Allow to quickly move items from curio slots

This commit is contained in:
DBotThePony 2022-10-26 23:46:10 +07:00
parent d8eef6db10
commit 1fed86db80
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -87,7 +87,12 @@ class ExoSuitInventoryMenu(val capability: MatteryPlayerCapability) : MatteryMen
init { init {
for ((a, b) in curiosSlots) { for ((a, b) in curiosSlots) {
addSlot(a) addSlot(a)
if (b != null) addSlot(b) storage2Inventory(a)
if (b != null) {
addSlot(b)
storage2Inventory(b)
}
} }
} }