v1.1.2: charge display on rose no longer includes partial ghost HP
This commit is contained in:
parent
db74efea10
commit
b6630362a7
|
@ -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) + "%";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user