Lighting sapphire lanterns requires filling them with lamp oil first.

This commit is contained in:
Avi Weinstock 2021-09-30 15:30:47 -04:00
parent 0e1a1c756c
commit 8c32a23726
2 changed files with 6 additions and 6 deletions

View file

@ -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
}
}
}

View file

@ -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
}
}
}
}
}