diff --git a/Server/src/main/content/global/skill/farming/ToolLeprechaunInterface.kt b/Server/src/main/content/global/skill/farming/ToolLeprechaunInterface.kt index 29e0d719d..75fbe8f07 100644 --- a/Server/src/main/content/global/skill/farming/ToolLeprechaunInterface.kt +++ b/Server/src/main/content/global/skill/farming/ToolLeprechaunInterface.kt @@ -135,7 +135,7 @@ class ToolLeprechaunInterface : InterfaceListener { player ?: return val hasAmount = amountInInventory(player, item) var finalAmount = amount - val spaceLeft = (if (item == Items.BUCKET_1925) 31 else 255) - quantityCheckMethod.invoke(player) + val spaceLeft = (if (item == Items.BUCKET_1925) 255 else 255) - quantityCheckMethod.invoke(player) if (hasAmount == 0) { val itemName = if (item == Items.BUCKET_1925) "buckets" else getItemName(item).lowercase() @@ -183,7 +183,7 @@ class ToolLeprechaunInterface : InterfaceListener { private fun doStackedWithdrawal(player: Player?, item: Int, amount: Int, updateQuantityMethod: (Player?, Int) -> Unit, quantityCheckMethod: (Player?) -> Int) { player ?: return - val hasAmount = quantityCheckMethod.invoke(player) + val hasAmount = if (item == Items.BUCKET_1925) 31 else quantityCheckMethod.invoke(player) var finalAmount = amount if (hasAmount == 0) {