V0.2.0a: Fixed a Bug with Sandals of Nature

This commit is contained in:
Evan Debenham 2014-09-16 19:15:59 -04:00
parent 28bc72153b
commit b8080a9dbe

View File

@ -172,6 +172,7 @@ public class SandalsOfNature extends Artifact {
GLog.w("Your " + name + " have already gained nutrients from that seed recently.");
} else {
seeds.add(item.name());
Hero hero = Dungeon.hero;
hero.sprite.operate( hero.pos );
hero.busy();
@ -194,6 +195,7 @@ public class SandalsOfNature extends Artifact {
} else {
GLog.i("Your " + name + " absorb the seed, they seem healthier.");
}
item.detach(hero.belongings.backpack);
}
}
}