From 182b55d2cab2a968cbf99e2477d16e9a235807d1 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 27 Sep 2023 19:16:14 -0400 Subject: [PATCH] v2.2.0: fixed defeating crystal spire not counting for 1k favor --- .../shatteredpixeldungeon/actors/mobs/npcs/Blacksmith.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/npcs/Blacksmith.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/npcs/Blacksmith.java index d168fdb80..8fb6a1f40 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/npcs/Blacksmith.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/npcs/Blacksmith.java @@ -430,8 +430,9 @@ public class Blacksmith extends NPC { } pick.detach(Dungeon.hero.belongings.backpack); Quest.pickaxe = pick; - //check for boss enemy, add another 1k points if they are dead - //perhaps reduce final quest score if hero is hit by avoidable boss attacks? + + if (bossBeaten) favor += 1000; + Statistics.questScores[2] = favor; }