v1.1.2: charge display on rose no longer includes partial ghost HP

This commit is contained in:
Evan Debenham 2022-01-05 16:32:44 -05:00
parent db74efea10
commit b6630362a7

View File

@ -264,7 +264,7 @@ public class DriedRose extends Artifact {
if (ghost == null){ if (ghost == null){
return super.status(); return super.status();
} else { } else {
return (int)((ghost.HP+partialCharge)*100) / ghost.HT + "%"; return ((ghost.HP*100) / ghost.HT) + "%";
} }
} }