diff --git a/src/main/kotlin/live/ixnoah/tapactions/commands/CommandQueue.kt b/src/main/kotlin/live/ixnoah/tapactions/commands/CommandQueue.kt index f075824..d0c8d29 100644 --- a/src/main/kotlin/live/ixnoah/tapactions/commands/CommandQueue.kt +++ b/src/main/kotlin/live/ixnoah/tapactions/commands/CommandQueue.kt @@ -15,4 +15,8 @@ object CommandQueue { Minecraft.getMinecraft().thePlayer.sendChatMessage("/" + command) } + + fun clearQueue() { + queue.clear() + } }