aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLulonaut <lulonaut@tutanota.de>2022-12-30 18:44:52 +0100
committerLulonaut <lulonaut@tutanota.de>2022-12-30 18:44:52 +0100
commit84bdb5acf6517fa6ccb4d1ec9cf5eacd40cbc1c1 (patch)
treef0c458e0d7bd0ed284c84739f4fce59d4c059f38
parent786f1ad636b53852cc2f5ee56d81926e5e05869d (diff)
downloadNotEnoughUpdates-84bdb5acf6517fa6ccb4d1ec9cf5eacd40cbc1c1.tar.gz
NotEnoughUpdates-84bdb5acf6517fa6ccb4d1ec9cf5eacd40cbc1c1.tar.bz2
NotEnoughUpdates-84bdb5acf6517fa6ccb4d1ec9cf5eacd40cbc1c1.zip
remove user information
-rw-r--r--src/main/kotlin/io/github/moulberry/notenoughupdates/miscfeatures/inventory/MuseumCheapestItemOverlay.kt2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/main/kotlin/io/github/moulberry/notenoughupdates/miscfeatures/inventory/MuseumCheapestItemOverlay.kt b/src/main/kotlin/io/github/moulberry/notenoughupdates/miscfeatures/inventory/MuseumCheapestItemOverlay.kt
index f97714e1..fe2dd1e1 100644
--- a/src/main/kotlin/io/github/moulberry/notenoughupdates/miscfeatures/inventory/MuseumCheapestItemOverlay.kt
+++ b/src/main/kotlin/io/github/moulberry/notenoughupdates/miscfeatures/inventory/MuseumCheapestItemOverlay.kt
@@ -233,10 +233,8 @@ object MuseumCheapestItemOverlay {
}
} else if (stack.item is ItemDye && stack.itemDamage == 10) { //also check donated items
val name = stack.displayName.stripControlCodes()
- println(name)
val armor = Utils.getOpenChestName().endsWith("Armor Sets")
val internalNames = guessInternalNames(name, armor)
- println(internalNames)
//remove items that have these internalnames
itemsToDonate.retainAll { it.internalNames != internalNames }
} else {