From 42fb54e0eaedc44d22a8c86fc539e46c68af3dab Mon Sep 17 00:00:00 2001 From: Appability Date: Wed, 12 Oct 2022 01:13:04 -0700 Subject: fix chestqol free chest features, + cancelinteractions and closechest from floppa --- src/main/kotlin/com/ambientaddons/commands/AutoBuyCommand.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/kotlin/com/ambientaddons/commands') diff --git a/src/main/kotlin/com/ambientaddons/commands/AutoBuyCommand.kt b/src/main/kotlin/com/ambientaddons/commands/AutoBuyCommand.kt index c7ff9a7..538485c 100644 --- a/src/main/kotlin/com/ambientaddons/commands/AutoBuyCommand.kt +++ b/src/main/kotlin/com/ambientaddons/commands/AutoBuyCommand.kt @@ -19,8 +19,8 @@ object AutoBuyCommand { if (persistentData.autoBuyItems.contains(item)) { persistentData.autoBuyItems.remove(item) persistentData.save() - UChat.chat("§aRemoved item §a§l$item.".withModPrefix()) - } else UChat.chat("§cItem §a§l$item does not exist!".withModPrefix()) + UChat.chat("§aRemoved item §a§l$item§a.".withModPrefix()) + } else UChat.chat("§cItem §c§l$item §cdoes not exist!".withModPrefix()) } "list" -> { UChat.chat("§2§lItems".withModPrefix()) -- cgit