From 2fad9b3af0829b6fa150f69c2de3afe7b4dcb116 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 24 Aug 2014 23:59:22 -0400 Subject: [PATCH] V0.2.0: see previous commit --- .../shatteredpixeldungeon/actors/hero/HeroClass.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/HeroClass.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/HeroClass.java index 05127c949..5ac3f300d 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/HeroClass.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/HeroClass.java @@ -140,11 +140,11 @@ public enum HeroClass { private static void initRogue( Hero hero ) { (hero.belongings.weapon = new Dagger()).identify(); (hero.belongings.armor = new ClothArmor()).identify(); - (hero.belongings.ring1 = new RingOfShadows()).upgrade().identify(); + (hero.belongings.misc1 = new RingOfShadows()).upgrade().identify(); new Dart( 8 ).identify().collect(); new Food().identify().collect(); - - hero.belongings.ring1.activate( hero ); + + hero.belongings.misc1.activate( hero ); if (Badges.isUnlocked( Badges.Badge.MASTERY_ROGUE )) { new TomeOfMastery().collect();