aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/github/moulberry/notenoughupdates/commands/Commands.java
diff options
context:
space:
mode:
authorNopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com>2022-09-14 22:30:25 +1000
committerGitHub <noreply@github.com>2022-09-14 14:30:25 +0200
commit18255a0e473092d0f389507a19944a7ddfc8078d (patch)
treed8e6548a8ecd46cb408e44829a8e5011c5df0211 /src/main/java/io/github/moulberry/notenoughupdates/commands/Commands.java
parent5e1cfdc20fa2d07f9448d0c0eee54cce9f1878f6 (diff)
downloadnotenoughupdates-18255a0e473092d0f389507a19944a7ddfc8078d.tar.gz
notenoughupdates-18255a0e473092d0f389507a19944a7ddfc8078d.tar.bz2
notenoughupdates-18255a0e473092d0f389507a19944a7ddfc8078d.zip
Added chat message to let players turn on the storage gui if they accidentally turned it off (#273)
* Added a chat message to turn the storage gui back on after turning it off in said storage gui * remove the skyclient mixin * map on by default
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/commands/Commands.java')
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/commands/Commands.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/commands/Commands.java b/src/main/java/io/github/moulberry/notenoughupdates/commands/Commands.java
index fcb2aaf9..62981a30 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/commands/Commands.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/commands/Commands.java
@@ -23,6 +23,7 @@ import io.github.moulberry.notenoughupdates.NotEnoughUpdates;
import io.github.moulberry.notenoughupdates.commands.dev.DevTestCommand;
import io.github.moulberry.notenoughupdates.commands.dev.DiagCommand;
import io.github.moulberry.notenoughupdates.commands.dev.DungeonWinTestCommand;
+import io.github.moulberry.notenoughupdates.commands.dev.EnableStorageCommand;
import io.github.moulberry.notenoughupdates.commands.dev.NullzeeSphereCommand;
import io.github.moulberry.notenoughupdates.commands.dev.PackDevCommand;
import io.github.moulberry.notenoughupdates.commands.dev.ReloadRepoCommand;
@@ -74,6 +75,7 @@ public class Commands {
ClientCommandHandler.instance.registerCommand(new DiagCommand());
ClientCommandHandler.instance.registerCommand(new ReloadRepoCommand());
ClientCommandHandler.instance.registerCommand(new ResetRepoCommand());
+ ClientCommandHandler.instance.registerCommand(new EnableStorageCommand());
// Profile Commands
ClientCommandHandler.instance.registerCommand(new PeekCommand());