diff options
author | Florian Rinke <develop@torui.de> | 2021-11-05 21:57:15 +0100 |
---|---|---|
committer | Florian Rinke <develop@torui.de> | 2021-11-05 21:57:15 +0100 |
commit | 0c249a45822de26b742f26aa09e129a26d81d3e3 (patch) | |
tree | 396779fb259ee12a342c3803db5de59247c8d2a1 /src/main/java/de/torui/coflsky/CoflSkyCommand.java | |
parent | 39a061b57e38667987a4e38df71b5d8030222c1b (diff) | |
download | COFL-0c249a45822de26b742f26aa09e129a26d81d3e3.tar.gz COFL-0c249a45822de26b742f26aa09e129a26d81d3e3.tar.bz2 COFL-0c249a45822de26b742f26aa09e129a26d81d3e3.zip |
Implement the Reset command server msg
Diffstat (limited to 'src/main/java/de/torui/coflsky/CoflSkyCommand.java')
-rw-r--r-- | src/main/java/de/torui/coflsky/CoflSkyCommand.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/de/torui/coflsky/CoflSkyCommand.java b/src/main/java/de/torui/coflsky/CoflSkyCommand.java index b48a3cd..43826f9 100644 --- a/src/main/java/de/torui/coflsky/CoflSkyCommand.java +++ b/src/main/java/de/torui/coflsky/CoflSkyCommand.java @@ -102,6 +102,7 @@ public class CoflSkyCommand extends CommandBase { } private void HandleReset() { + CoflSky.Wrapper.SendMessage(new Command<String>(CommandType.Reset,"")); CoflSky.Wrapper.stop(); Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText("Stopping Connection to CoflNet")); CoflSessionManager.DeleteAllCoflSessions(); |