v1.1.2: charge display on rose no longer includes partial ghost HP
This commit is contained in:
@@ -264,7 +264,7 @@ public class DriedRose extends Artifact {
|
||||
if (ghost == null){
|
||||
return super.status();
|
||||
} else {
|
||||
return (int)((ghost.HP+partialCharge)*100) / ghost.HT + "%";
|
||||
return ((ghost.HP*100) / ghost.HT) + "%";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user