summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/data
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-12-17 18:30:31 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-12-17 18:30:31 +0100
commit3b98ddabeda1e78f63442fb5709b68ce7a1223e7 (patch)
treeb1e977c46ac8890fab8fc8b2d5f3d7572958c5db /src/main/java/at/hannibal2/skyhanni/data
parentd577665018ab1a8a908f81fa0b3ef93c17bf5afa (diff)
downloadskyhanni-3b98ddabeda1e78f63442fb5709b68ce7a1223e7.tar.gz
skyhanni-3b98ddabeda1e78f63442fb5709b68ce7a1223e7.tar.bz2
skyhanni-3b98ddabeda1e78f63442fb5709b68ce7a1223e7.zip
Added Copy Underbid Price
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/data')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/data/OtherInventoryData.kt2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/OtherInventoryData.kt b/src/main/java/at/hannibal2/skyhanni/data/OtherInventoryData.kt
index 921d591b2..fa8494dcb 100644
--- a/src/main/java/at/hannibal2/skyhanni/data/OtherInventoryData.kt
+++ b/src/main/java/at/hannibal2/skyhanni/data/OtherInventoryData.kt
@@ -95,6 +95,7 @@ object OtherInventoryData {
private fun done(inventory: Inventory) {
InventoryFullyOpenedEvent(inventory).postAndCatch()
+ inventory.fullyOpenedOnce = true
InventoryUpdatedEvent(inventory).postAndCatch()
acceptItems = false
}
@@ -104,5 +105,6 @@ object OtherInventoryData {
val title: String,
val slotCount: Int,
val items: MutableMap<Int, ItemStack> = mutableMapOf(),
+ var fullyOpenedOnce: Boolean = false
)
}