diff --git a/common/src/cmd.rs b/common/src/cmd.rs
index 06621bc5d7..fb2b8068dc 100644
--- a/common/src/cmd.rs
+++ b/common/src/cmd.rs
@@ -747,9 +747,14 @@ impl ServerChatCommand {
ServerChatCommand::Lightning => {
cmd(vec![], "Lightning strike at current position", Some(Admin))
},
- ServerChatCommand::Scale => {
- cmd(vec![Float("factor", 1.0, Required), Boolean("reset_mass", true.to_string(), Optional)], "Scale your character", Some(Admin))
- },
+ ServerChatCommand::Scale => cmd(
+ vec![
+ Float("factor", 1.0, Required),
+ Boolean("reset_mass", true.to_string(), Optional),
+ ],
+ "Scale your character",
+ Some(Admin),
+ ),
}
}
diff --git a/common/src/event.rs b/common/src/event.rs
index 7914d6a21e..629746b934 100644
--- a/common/src/event.rs
+++ b/common/src/event.rs
@@ -81,38 +81,47 @@ impl NpcBuilder {
self.health = health.into();
self
}
+
pub fn with_poise(mut self, poise: comp::Poise) -> Self {
self.poise = poise;
self
}
+
pub fn with_agent(mut self, agent: impl Into