From 951bd49d92ec3b1d02df017d56833e9d904821d2 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 23 Oct 2015 02:48:07 -0400 Subject: [PATCH] v0.3.2: fixed a bug with wandmaker levelgen --- .../shatteredpixeldungeon/actors/mobs/npcs/Wandmaker.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/npcs/Wandmaker.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/npcs/Wandmaker.java index 797fcff2a..0fef6368e 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/npcs/Wandmaker.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/npcs/Wandmaker.java @@ -353,9 +353,12 @@ public class Wandmaker extends NPC { wand2.upgrade(); return true; + } else { + return false; } + } else { + return true; } - return false; } private static boolean setRoom( Collection rooms) {