diff --git a/Server/src/main/kotlin/rs09/game/node/entity/skill/crafting/lightsources/LightSourceLighter.kt b/Server/src/main/kotlin/rs09/game/node/entity/skill/crafting/lightsources/LightSourceLighter.kt index 3a955a658..835cfec99 100644 --- a/Server/src/main/kotlin/rs09/game/node/entity/skill/crafting/lightsources/LightSourceLighter.kt +++ b/Server/src/main/kotlin/rs09/game/node/entity/skill/crafting/lightsources/LightSourceLighter.kt @@ -38,7 +38,7 @@ class LightSourceLighter : UseWithHandler(590,36,38){ * * For bullseye lanterns: * 4548 + tinderbox = 4550 - * 4700 + tinderbox = 4702 + * 4701 + tinderbox = 4702 * 9064 + tinderbox = 9065 * Required Level: 49 Firemaking */ @@ -51,7 +51,7 @@ class LightSourceLighter : UseWithHandler(590,36,38){ addHandler(4522, ITEM_TYPE, this) addHandler(4537, ITEM_TYPE, this) addHandler(4548, ITEM_TYPE, this) - addHandler(4700, ITEM_TYPE, this) + addHandler(4701, ITEM_TYPE, this) addHandler(9064, ITEM_TYPE, this) return this } @@ -86,4 +86,4 @@ class LightSourceLighter : UseWithHandler(590,36,38){ player.inventory.replace(item,Item(lightSource.litID)) return true } -} \ No newline at end of file +} diff --git a/Server/src/main/kotlin/rs09/game/node/entity/skill/crafting/lightsources/LightSources.kt b/Server/src/main/kotlin/rs09/game/node/entity/skill/crafting/lightsources/LightSources.kt index c6a6c3c87..8849bc805 100644 --- a/Server/src/main/kotlin/rs09/game/node/entity/skill/crafting/lightsources/LightSources.kt +++ b/Server/src/main/kotlin/rs09/game/node/entity/skill/crafting/lightsources/LightSources.kt @@ -9,7 +9,7 @@ enum class LightSources(val emptyID: Int, val fullID: Int, val litID: Int, val l OIL_LAMP(4525,4522,4524,12,true), OIL_LANTERN(4535,4537,4539,29,false), BULLSEYE_LANTERN(4546,4548,4550,49,false), - SAPPHIRE_LANTERN(0,4700,4702,49,false), + SAPPHIRE_LANTERN(0,4701,4702,49,false), EMERALD_LANTERN(0,9064,9065,49,false); companion object { @@ -23,10 +23,10 @@ enum class LightSources(val emptyID: Int, val fullID: Int, val litID: Int, val l 4522, 4524 -> OIL_LAMP 4537, 4539 -> OIL_LANTERN 4548, 4550 -> BULLSEYE_LANTERN - 4700, 4702 -> SAPPHIRE_LANTERN + 4701, 4702 -> SAPPHIRE_LANTERN 9064, 9065 -> EMERALD_LANTERN else -> null } } } -} \ No newline at end of file +}