From 7062eab3f38654c948b1326ede31a942c4b5ff65 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 19 Jun 2023 16:10:16 -0400 Subject: [PATCH] v2.1.3: fixed ratmog boosting health again during ascent challenge --- .../actors/hero/abilities/Ratmogrify.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/abilities/Ratmogrify.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/abilities/Ratmogrify.java index 618619c75..f38e73e4a 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/abilities/Ratmogrify.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/abilities/Ratmogrify.java @@ -184,6 +184,9 @@ public class Ratmogrify extends ArmorAbility { { spriteClass = RatSprite.class; + + //always false, as we derive stats from what we are transmogging from (which was already added) + firstAdded = false; } private Mob original;