diff --git a/src/main/kotlin/ru/dbotthepony/kstarbound/defs/item/ItemDefinition.kt b/src/main/kotlin/ru/dbotthepony/kstarbound/defs/item/ItemDefinition.kt index 6c3026b6..1dfaf698 100644 --- a/src/main/kotlin/ru/dbotthepony/kstarbound/defs/item/ItemDefinition.kt +++ b/src/main/kotlin/ru/dbotthepony/kstarbound/defs/item/ItemDefinition.kt @@ -1,5 +1,6 @@ package ru.dbotthepony.kstarbound.defs.item +import com.google.common.collect.ImmutableList import ru.dbotthepony.kstarbound.defs.IThingWithDescription import ru.dbotthepony.kstarbound.defs.ThingDescription @@ -8,16 +9,16 @@ data class ItemDefinition( override val price: Long, override val rarity: ItemRarity, override val category: String?, - override val inventoryIcon: List?, - override val itemTags: List, - override val learnBlueprintsOnPickup: List, + override val inventoryIcon: ImmutableList?, + override val itemTags: ImmutableList, + override val learnBlueprintsOnPickup: ImmutableList, override val maxStack: Long, override val eventCategory: String?, override val consumeOnPickup: Boolean, - override val pickupQuestTemplates: List, + override val pickupQuestTemplates: ImmutableList, override val tooltipKind: ItemTooltipKind, override val twoHanded: Boolean, - override val radioMessagesOnPickup: List, + override val radioMessagesOnPickup: ImmutableList, override val fuelAmount: Long?, val descriptionData: ThingDescription,