From 4f8f576794f3fbf6803af600dd653d38edef4ffc Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 3 Dec 2023 16:55:26 -0500 Subject: [PATCH] v2.3.0: changed which quest blacksmith spawns for now --- .../shatteredpixeldungeon/actors/mobs/npcs/Blacksmith.java | 4 ++-- 1 file changed, 2 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 27d1a753c..08bd3d8fa 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 @@ -393,9 +393,9 @@ public class Blacksmith extends NPC { rooms.add(new BlacksmithRoom()); spawned = true; - //currently only the crystal quest is ready to play + //currently hard set to gnoll quest for testing //we still roll for quest type however, to ensure seed consistency - type = 1+Random.Int(1); + type = 2+Random.Int(1); alternative = false; given = false;