From ca485188bc6e18b400da030eaac631e300c9af7d Mon Sep 17 00:00:00 2001 From: 4Ply Date: Fri, 3 Jan 2025 03:48:56 +0200 Subject: [PATCH] Remove debug log line --- src/main/kotlin/org/trackedout/citadel/InventoryManager.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/kotlin/org/trackedout/citadel/InventoryManager.kt b/src/main/kotlin/org/trackedout/citadel/InventoryManager.kt index d4cc125..d06f0cb 100644 --- a/src/main/kotlin/org/trackedout/citadel/InventoryManager.kt +++ b/src/main/kotlin/org/trackedout/citadel/InventoryManager.kt @@ -60,7 +60,6 @@ class InventoryManager( // Check cards against contents of player's deck Cards.Companion.Card.entries.sortedBy { it.colour + it.key }.forEach { card -> val maxCardsThatShouldBeInInventory = deckItems.count { - plugin.logger.info("Checking ${it.name} == ${card.key} && ${it.deckType} == ${runType.runType.shortRunType()} && ${it.hiddenInDecks?.isNotEmpty() == true}") it.name == card.key && it.deckType == runType.runType.shortRunType() && it.hiddenInDecks?.isNotEmpty() == true }