diff options
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/rei/NEUItemEntrySerializer.kt')
-rw-r--r-- | src/main/kotlin/moe/nea/firmament/rei/NEUItemEntrySerializer.kt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/rei/NEUItemEntrySerializer.kt b/src/main/kotlin/moe/nea/firmament/rei/NEUItemEntrySerializer.kt index 1da123e..6c47cb2 100644 --- a/src/main/kotlin/moe/nea/firmament/rei/NEUItemEntrySerializer.kt +++ b/src/main/kotlin/moe/nea/firmament/rei/NEUItemEntrySerializer.kt @@ -1,5 +1,6 @@ /* * SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe> + * SPDX-FileCopyrightText: 2024 Linnea Gräf <nea@nea.moe> * * SPDX-License-Identifier: GPL-3.0-or-later */ @@ -27,7 +28,7 @@ object NEUItemEntrySerializer : EntrySerializer<SBItemStack> { override fun save(entry: EntryStack<SBItemStack>, value: SBItemStack): NbtCompound { return NbtCompound().apply { putString(SKYBLOCK_ID_ENTRY, value.skyblockId.neuItem) - putInt(SKYBLOCK_ITEM_COUNT, value.stackSize) + putInt(SKYBLOCK_ITEM_COUNT, value.getStackSize()) } } } |