diff options
author | DJtheRedstoner <52044242+DJtheRedstoner@users.noreply.github.com> | 2020-10-21 21:15:01 -0400 |
---|---|---|
committer | DJtheRedstoner <52044242+DJtheRedstoner@users.noreply.github.com> | 2020-10-21 21:15:01 -0400 |
commit | ab4eb74fb5af37b7eaf5e9faa95debb75721d269 (patch) | |
tree | f68910a45549b5c3636228a016824a5b3e965dbe /src/main/java/me/djtheredstoner/perspectivemod/commands | |
parent | 3cd0d242a9a631ab7a255c81a761b9a91c6d23b5 (diff) | |
download | PerspectiveModv4-ab4eb74fb5af37b7eaf5e9faa95debb75721d269.tar.gz PerspectiveModv4-ab4eb74fb5af37b7eaf5e9faa95debb75721d269.tar.bz2 PerspectiveModv4-ab4eb74fb5af37b7eaf5e9faa95debb75721d269.zip |
Bug Fixes:
- Fix spazing in and out
- Now with 100% less static abuse
Diffstat (limited to 'src/main/java/me/djtheredstoner/perspectivemod/commands')
-rw-r--r-- | src/main/java/me/djtheredstoner/perspectivemod/commands/PerspectiveModCommand.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/me/djtheredstoner/perspectivemod/commands/PerspectiveModCommand.java b/src/main/java/me/djtheredstoner/perspectivemod/commands/PerspectiveModCommand.java index 68dd051..cad7f79 100644 --- a/src/main/java/me/djtheredstoner/perspectivemod/commands/PerspectiveModCommand.java +++ b/src/main/java/me/djtheredstoner/perspectivemod/commands/PerspectiveModCommand.java @@ -37,7 +37,7 @@ public class PerspectiveModCommand extends CommandBase { if (args.length == 1 && args[0].equals("eW91IGZvdW5kIGEgc2VjcmV0IQo=")) { sendMessage("you found a secret!"); } else { - ModCore.getInstance().getGuiHandler().open(PerspectiveMod.config.gui()); + ModCore.getInstance().getGuiHandler().open(PerspectiveMod.instance.config.gui()); } } |