Skip to content

Commit cf67b35

Browse files
committed
Renamed freeze command
1 parent 2f3b17f commit cf67b35

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/dev/lars/utilsmanager/plugin/Registrar.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public static void commandRegistration(JavaPlugin plugin) {
126126

127127
manager.registerEventHandler(LifecycleEvents.COMMANDS, event -> {
128128
final Commands commands = event.registrar();
129-
commands.register("toggletime", "Decide if the time should snyc with local time zone", new RealTimeCommand());
129+
commands.register("toggletime", "Decide if the time should sync with local time zone", new RealTimeCommand());
130130
});
131131

132132
manager.registerEventHandler(LifecycleEvents.COMMANDS, event -> {
@@ -206,7 +206,7 @@ public static void commandRegistration(JavaPlugin plugin) {
206206

207207
manager.registerEventHandler(LifecycleEvents.COMMANDS, event -> {
208208
final Commands commands = event.registrar();
209-
commands.register("freeezee", "Scare and freeze a player", new FreezeCommand());
209+
commands.register("freeze", "Scare and freeze a player", new FreezeCommand());
210210
});
211211

212212
manager.registerEventHandler(LifecycleEvents.COMMANDS, event -> {
@@ -349,4 +349,4 @@ public static void commandRegistration(JavaPlugin plugin) {
349349
commands.register("r", "Reply another player", new ReplyCommand());
350350
});
351351
}
352-
}
352+
}

0 commit comments

Comments
 (0)