From f7c8455b87f6c654b8cbe2d952c66fe61f6e642e Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Mon, 23 Jan 2023 12:15:27 +0700 Subject: [PATCH] =?UTF-8?q?=D0=BC=D0=BC=D0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../kstarbound/defs/item/ItemDefinition.kt | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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,