v0.3.2c: potion of might no longer extends potion of strength for no reason

This commit is contained in:
Evan Debenham 2015-11-23 16:35:25 -05:00
parent 38d25f33bb
commit 2b1b99333e

View File

@ -25,7 +25,7 @@ import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite; import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog; import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
public class PotionOfMight extends PotionOfStrength { public class PotionOfMight extends Potion {
{ {
name = "Potion of Might"; name = "Potion of Might";
@ -41,7 +41,7 @@ public class PotionOfMight extends PotionOfStrength {
hero.STR++; hero.STR++;
hero.HT += 5; hero.HT += 5;
hero.HP += 5; hero.HP += 5;
hero.sprite.showStatus( CharSprite.POSITIVE, "+1 str, +5 ht" ); hero.sprite.showStatus( CharSprite.POSITIVE, "+1 str, +5 hp" );
GLog.p( "Newfound strength surges through your body." ); GLog.p( "Newfound strength surges through your body." );
Badges.validateStrengthAttained(); Badges.validateStrengthAttained();