From 3ec8ea602bef2b3862e900e565c3f77c34991a44 Mon Sep 17 00:00:00 2001 From: cringeandrunny Date: Wed, 9 Feb 2022 22:02:30 -0500 Subject: [PATCH] BF now saves the oreinpot attribute, fixing the bug of people not being able to smelt if they fill the BF with ore and coal and logging out before smelting --- .../kotlin/rs09/game/node/entity/npc/other/BlastFurnaceOre.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/src/main/kotlin/rs09/game/node/entity/npc/other/BlastFurnaceOre.kt b/Server/src/main/kotlin/rs09/game/node/entity/npc/other/BlastFurnaceOre.kt index 15ecf9af4..f49da7a1b 100644 --- a/Server/src/main/kotlin/rs09/game/node/entity/npc/other/BlastFurnaceOre.kt +++ b/Server/src/main/kotlin/rs09/game/node/entity/npc/other/BlastFurnaceOre.kt @@ -65,7 +65,7 @@ class BlastFurnaceOre : AbstractNPC { if (counter == 0) { val animation = Animation(2434) animate(animation) - owner?.setAttribute("OreInPot",true) + owner?.setAttribute("/save:OreInPot",true) submitIndividualPulse(this, object : Pulse(animationDuration(animation)) { override fun pulse(): Boolean { clear()