Bug fixes and ~~performance~~ typing improvements
diff --git a/src/commands/nucleus/guide.ts b/src/commands/nucleus/guide.ts
index b9df446..ffc441a 100644
--- a/src/commands/nucleus/guide.ts
+++ b/src/commands/nucleus/guide.ts
@@ -2,9 +2,7 @@
 import guide from "../../reflex/guide.js";
 
 const command = (builder: SlashCommandSubcommandBuilder) =>
-    builder
-        .setName("guide")
-        .setDescription("Shows the welcome guide for the bot");
+    builder.setName("guide").setDescription("Shows the welcome guide for the bot");
 
 const callback = async (interaction) => {
     guide(interaction.guild, interaction);