diff --git a/src/main/java/me/rigamortis/seppuku/impl/command/CalcStrongholdCommand.java b/src/main/java/me/rigamortis/seppuku/impl/command/CalcStrongholdCommand.java index 4f656ed..a3670ac 100644 --- a/src/main/java/me/rigamortis/seppuku/impl/command/CalcStrongholdCommand.java +++ b/src/main/java/me/rigamortis/seppuku/impl/command/CalcStrongholdCommand.java @@ -35,7 +35,7 @@ public final class CalcStrongholdCommand extends Command { private final String[] resetAlias = new String[]{"Reset", "Res", "R"}; public CalcStrongholdCommand() { - super("CalcStronghold", new String[]{"CS", "FindStronghold", "cstrong"}, "Calculates where the nearest stronghold is.", "CalcStronghold\n" + + super("CalcStronghold", new String[]{"CS", "FindStronghold", "cstrong"}, "Calculates where the nearest stronghold is", "CalcStronghold\n" + "CalcStronghold Reset"); } diff --git a/src/main/java/me/rigamortis/seppuku/impl/command/DupeCommand.java b/src/main/java/me/rigamortis/seppuku/impl/command/DupeCommand.java index c681412..2a539b3 100644 --- a/src/main/java/me/rigamortis/seppuku/impl/command/DupeCommand.java +++ b/src/main/java/me/rigamortis/seppuku/impl/command/DupeCommand.java @@ -12,7 +12,7 @@ import net.minecraft.network.play.client.CPacketUseEntity; public final class DupeCommand extends Command { public DupeCommand() { - super("Dupe", new String[]{"Dup", "Doop"}, "Allows you to dupe your inventory", "Dupe"); + super("Dupe", new String[]{"Dup", "Doop"}, "Attempts to dupe your inventory using an outdated method", "Dupe"); } @Override diff --git a/src/main/java/me/rigamortis/seppuku/impl/command/EnchantCommand.java b/src/main/java/me/rigamortis/seppuku/impl/command/EnchantCommand.java index 762cebd..a226431 100644 --- a/src/main/java/me/rigamortis/seppuku/impl/command/EnchantCommand.java +++ b/src/main/java/me/rigamortis/seppuku/impl/command/EnchantCommand.java @@ -15,7 +15,7 @@ import net.minecraft.network.play.client.CPacketCreativeInventoryAction; public final class EnchantCommand extends Command { public EnchantCommand() { - super("Enchant", new String[]{"Ench"}, "Add enchants to your held item while in creative mode.", "Enchant ([true/false] Disable Curses)"); + super("Enchant", new String[]{"Ench"}, "Add enchants to your held item while in creative mode", "Enchant ([true/false] Disable Curses)"); } @Override diff --git a/src/main/java/me/rigamortis/seppuku/impl/command/LastInvCommand.java b/src/main/java/me/rigamortis/seppuku/impl/command/LastInvCommand.java index d5694a3..b79648b 100644 --- a/src/main/java/me/rigamortis/seppuku/impl/command/LastInvCommand.java +++ b/src/main/java/me/rigamortis/seppuku/impl/command/LastInvCommand.java @@ -13,7 +13,7 @@ import team.stiff.pomelo.impl.annotated.handler.annotation.Listener; public final class LastInvCommand extends Command { public LastInvCommand() { - super("LastInv", new String[]{"EnderChest", "Echest", "Portable"}, "Opens your previous inventory if \"MoreInv\" is enabled.", "LastInv"); + super("LastInv", new String[]{"EnderChest", "Echest", "Portable"}, "Opens your previous inventory if \"MoreInv\" is enabled", "LastInv"); } @Override @@ -40,4 +40,4 @@ public final class LastInvCommand extends Command { Seppuku.INSTANCE.getEventManager().removeEventListener(this); } -} \ No newline at end of file +} diff --git a/src/main/java/me/rigamortis/seppuku/impl/command/MainMenuCommand.java b/src/main/java/me/rigamortis/seppuku/impl/command/MainMenuCommand.java index f4cfbbb..86bb22b 100644 --- a/src/main/java/me/rigamortis/seppuku/impl/command/MainMenuCommand.java +++ b/src/main/java/me/rigamortis/seppuku/impl/command/MainMenuCommand.java @@ -9,7 +9,7 @@ import me.rigamortis.seppuku.api.command.Command; public final class MainMenuCommand extends Command { public MainMenuCommand() { - super("MainMenu", new String[]{"ToggleMainMenu", "ToggleMM", "CustomMainMenu", "CustomMM"}, "Enables or disables the Seppuku main menu.", "MainMenu"); + super("MainMenu", new String[]{"ToggleMainMenu", "ToggleMM", "CustomMainMenu", "CustomMM"}, "Enables or disables the Seppuku main menu", "MainMenu"); } @Override @@ -20,6 +20,6 @@ public final class MainMenuCommand extends Command { } Seppuku.INSTANCE.getConfigManager().setCustomMainMenuHidden(!Seppuku.INSTANCE.getConfigManager().isCustomMainMenuHidden()); - Seppuku.INSTANCE.logChat("Custom main menu " + (Seppuku.INSTANCE.getConfigManager().isCustomMainMenuHidden() ? "hidden." : "restored.")); + Seppuku.INSTANCE.logChat("Custom main menu " + (Seppuku.INSTANCE.getConfigManager().isCustomMainMenuHidden() ? "hidden!" : "restored!")); } } diff --git a/src/main/java/me/rigamortis/seppuku/impl/command/NameCommand.java b/src/main/java/me/rigamortis/seppuku/impl/command/NameCommand.java index 23a0573..7789c62 100644 --- a/src/main/java/me/rigamortis/seppuku/impl/command/NameCommand.java +++ b/src/main/java/me/rigamortis/seppuku/impl/command/NameCommand.java @@ -12,7 +12,7 @@ import net.minecraft.util.Session; public final class NameCommand extends Command { public NameCommand() { - super("Name", new String[]{"Nam"}, "Allows you to change the case of your name", "Name "); + super("Name", new String[]{"Nam"}, "Allows you to change the capitalizaton of your name", "Name "); } @Override diff --git a/src/main/java/me/rigamortis/seppuku/impl/command/RenameCommand.java b/src/main/java/me/rigamortis/seppuku/impl/command/RenameCommand.java index 854a37d..2a203a9 100644 --- a/src/main/java/me/rigamortis/seppuku/impl/command/RenameCommand.java +++ b/src/main/java/me/rigamortis/seppuku/impl/command/RenameCommand.java @@ -14,7 +14,7 @@ import net.minecraft.network.play.client.CPacketCreativeInventoryAction; public final class RenameCommand extends Command { public RenameCommand() { - super("Rename", new String[]{"Ren"}, "Allows you to rename your held item while in creative mode(Supports color codes)", "Rename "); + super("Rename", new String[]{"Ren"}, "Allows you to rename your held item while in creative mode (supports color codes)", "Rename "); } @Override @@ -27,14 +27,14 @@ public final class RenameCommand extends Command { final Minecraft mc = Minecraft.getMinecraft(); if (!mc.player.isCreative()) { - Seppuku.INSTANCE.errorChat("Creative mode is required to use this command."); + Seppuku.INSTANCE.errorChat("Creative mode is required to use this command"); return; } final ItemStack itemStack = mc.player.getHeldItemMainhand(); if (itemStack.isEmpty()) { - Seppuku.INSTANCE.errorChat("Please hold an item in your main hand to enchant."); + Seppuku.INSTANCE.errorChat("Please hold an item in your main hand to enchant"); return; } diff --git a/src/main/java/me/rigamortis/seppuku/impl/command/RenameModuleCommand.java b/src/main/java/me/rigamortis/seppuku/impl/command/RenameModuleCommand.java index ee1dd6f..daa1176 100644 --- a/src/main/java/me/rigamortis/seppuku/impl/command/RenameModuleCommand.java +++ b/src/main/java/me/rigamortis/seppuku/impl/command/RenameModuleCommand.java @@ -12,7 +12,7 @@ import me.rigamortis.seppuku.impl.config.ModuleConfig; public final class RenameModuleCommand extends Command { public RenameModuleCommand() { - super("RenameModule", new String[]{"rm", "renamemod", "renamemodule"}, "Rename modules.", "renamemodule "); + super("RenameModule", new String[]{"rm", "renamemod", "renamemodule"}, "Rename modules", "renamemodule "); } @Override diff --git a/src/main/java/me/rigamortis/seppuku/impl/command/SignBookCommand.java b/src/main/java/me/rigamortis/seppuku/impl/command/SignBookCommand.java index 26286f7..debbd18 100644 --- a/src/main/java/me/rigamortis/seppuku/impl/command/SignBookCommand.java +++ b/src/main/java/me/rigamortis/seppuku/impl/command/SignBookCommand.java @@ -29,7 +29,7 @@ public final class SignBookCommand extends Command { final Minecraft mc = Minecraft.getMinecraft(); if (!mc.player.isCreative()) { - Seppuku.INSTANCE.errorChat("Creative mode is required to use this command."); + Seppuku.INSTANCE.errorChat("Creative mode is required to use this command"); return; } diff --git a/src/main/java/me/rigamortis/seppuku/impl/command/SkullCommand.java b/src/main/java/me/rigamortis/seppuku/impl/command/SkullCommand.java index 8e7d049..db27f3a 100644 --- a/src/main/java/me/rigamortis/seppuku/impl/command/SkullCommand.java +++ b/src/main/java/me/rigamortis/seppuku/impl/command/SkullCommand.java @@ -28,7 +28,7 @@ public final class SkullCommand extends Command { final Minecraft mc = Minecraft.getMinecraft(); if (!mc.player.isCreative()) { - Seppuku.INSTANCE.errorChat("Creative mode is required to use this command."); + Seppuku.INSTANCE.errorChat("Creative mode is required to use this command"); return; } diff --git a/src/main/java/me/rigamortis/seppuku/impl/command/SpawnEggCommand.java b/src/main/java/me/rigamortis/seppuku/impl/command/SpawnEggCommand.java index 64834f9..8a9d495 100644 --- a/src/main/java/me/rigamortis/seppuku/impl/command/SpawnEggCommand.java +++ b/src/main/java/me/rigamortis/seppuku/impl/command/SpawnEggCommand.java @@ -41,7 +41,7 @@ public final class SpawnEggCommand extends Command { final Minecraft mc = Minecraft.getMinecraft(); if (!mc.player.isCreative()) { - Seppuku.INSTANCE.errorChat("Creative mode is required to use this command."); + Seppuku.INSTANCE.errorChat("Creative mode is required to use this command"); return; } diff --git a/src/main/java/me/rigamortis/seppuku/impl/command/StackSizeCommand.java b/src/main/java/me/rigamortis/seppuku/impl/command/StackSizeCommand.java index 8a82e4e..7b122df 100644 --- a/src/main/java/me/rigamortis/seppuku/impl/command/StackSizeCommand.java +++ b/src/main/java/me/rigamortis/seppuku/impl/command/StackSizeCommand.java @@ -26,14 +26,14 @@ public final class StackSizeCommand extends Command { final Minecraft mc = Minecraft.getMinecraft(); if (!mc.player.isCreative()) { - Seppuku.INSTANCE.errorChat("Creative mode is required to use this command."); + Seppuku.INSTANCE.errorChat("Creative mode is required to use this command"); return; } final ItemStack itemStack = mc.player.getHeldItemMainhand(); if (itemStack.isEmpty()) { - Seppuku.INSTANCE.errorChat("Please hold an item in your main hand to enchant."); + Seppuku.INSTANCE.errorChat("Please hold an item in your main hand to enchant"); return; }