Skip to content

Commit

Permalink
Remove debug log line
Browse files Browse the repository at this point in the history
  • Loading branch information
4Ply committed Jan 3, 2025
1 parent 7495410 commit ca48518
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/main/kotlin/org/trackedout/citadel/InventoryManager.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit ca48518

Please sign in to comment.