From 27457ea94f621a018a4f0a42f32569bf69c3a7bf Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 15 Oct 2017 15:34:15 -0400 Subject: [PATCH] v0.6.2: fixed incorrect runestone appearing in runestone room --- .../levels/rooms/secret/SecretRunestoneRoom.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/rooms/secret/SecretRunestoneRoom.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/rooms/secret/SecretRunestoneRoom.java index a6c256537..cc9610091 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/rooms/secret/SecretRunestoneRoom.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/rooms/secret/SecretRunestoneRoom.java @@ -22,7 +22,7 @@ package com.shatteredpixel.shatteredpixeldungeon.levels.rooms.secret; import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfLiquidFlame; -import com.shatteredpixel.shatteredpixeldungeon.items.stones.StoneOfIntuition; +import com.shatteredpixel.shatteredpixeldungeon.items.stones.StoneOfEnchantment; import com.shatteredpixel.shatteredpixeldungeon.levels.Level; import com.shatteredpixel.shatteredpixeldungeon.levels.Terrain; import com.shatteredpixel.shatteredpixeldungeon.levels.painters.Painter; @@ -66,7 +66,7 @@ public class SecretRunestoneRoom extends SecretRoom { do{ dropPos = level.pointToCell(random()); } while (level.map[dropPos] != Terrain.EMPTY_SP); - level.drop( new StoneOfIntuition(), dropPos); + level.drop( new StoneOfEnchantment(), dropPos); entrance.set(Door.Type.HIDDEN); }