From a8abd17e5e190a0afe141772fbd397717a29893d Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Sun, 30 May 2021 19:37:36 +0200 Subject: [PATCH] Added "invisible" property of Sinow Beat and Sinow Gold. --- .../world/phantasmal/lib/fileFormats/quest/NpcType.kt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/src/commonMain/kotlin/world/phantasmal/lib/fileFormats/quest/NpcType.kt b/lib/src/commonMain/kotlin/world/phantasmal/lib/fileFormats/quest/NpcType.kt index dff5f4b0..d03e148e 100644 --- a/lib/src/commonMain/kotlin/world/phantasmal/lib/fileFormats/quest/NpcType.kt +++ b/lib/src/commonMain/kotlin/world/phantasmal/lib/fileFormats/quest/NpcType.kt @@ -510,6 +510,9 @@ enum class NpcType( typeId = 130, skin = 0, special = false, + properties = listOf( + EntityProp(name = "Invisible", offset = 44, type = EntityPropType.F32) + ), ), SinowGold( uniqueName = "Sinow Gold", @@ -520,6 +523,9 @@ enum class NpcType( typeId = 130, skin = 0, special = true, + properties = listOf( + EntityProp(name = "Invisible", offset = 44, type = EntityPropType.F32) + ), ), Canadine( uniqueName = "Canadine",