diff options
author | Matthias Luger <malua007@live.de> | 2023-03-16 18:46:49 +0100 |
---|---|---|
committer | Matthias Luger <malua007@live.de> | 2023-03-16 18:46:49 +0100 |
commit | c8b75f0c72164fefc3ba375f16bd717d8ce7212b (patch) | |
tree | 743ffe5c2f79bd5bc4f3c7364e79bb2dcdbf7c00 /src/main/java/de/torui/coflsky/handlers/EventRegistry.java | |
parent | e82c5c5eb2cff03690c71d413b6c4f724a7861fc (diff) | |
download | COFL-c8b75f0c72164fefc3ba375f16bd717d8ce7212b.tar.gz COFL-c8b75f0c72164fefc3ba375f16bd717d8ce7212b.tar.bz2 COFL-c8b75f0c72164fefc3ba375f16bd717d8ce7212b.zip |
lower case all internal openAuctionGui commands
Diffstat (limited to 'src/main/java/de/torui/coflsky/handlers/EventRegistry.java')
-rw-r--r-- | src/main/java/de/torui/coflsky/handlers/EventRegistry.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/de/torui/coflsky/handlers/EventRegistry.java b/src/main/java/de/torui/coflsky/handlers/EventRegistry.java index a88e703..81300ad 100644 --- a/src/main/java/de/torui/coflsky/handlers/EventRegistry.java +++ b/src/main/java/de/torui/coflsky/handlers/EventRegistry.java @@ -68,7 +68,7 @@ public class EventRegistry { if (WSCommandHandler.lastOnClickEvent != null) { FlipData f = WSCommandHandler.flipHandler.fds.GetLastFlip(); if (f != null) { - WSCommandHandler.Execute("/cofl openAuctionGUI " + f.Id + " false", + WSCommandHandler.Execute("/cofl openauctiongui " + f.Id + " false", Minecraft.getMinecraft().thePlayer); } } @@ -80,7 +80,7 @@ public class EventRegistry { FlipData f = WSCommandHandler.flipHandler.fds.GetHighestFlip(); if (f != null) { - WSCommandHandler.Execute("/cofl openAuctionGUI " + f.Id + " true", + WSCommandHandler.Execute("/cofl openauctiongui " + f.Id + " true", Minecraft.getMinecraft().thePlayer); EventRegistry.LastViewAuctionUUID = f.Id; EventRegistry.LastViewAuctionInvocation = System.currentTimeMillis(); |