Health looks nicer.

This commit is contained in:
William Burns 2015-12-13 13:29:46 +00:00
parent 4fad564e15
commit e31124e212

View File

@ -1039,7 +1039,7 @@ public class Gladiators extends SoloGame
if (e.GetLog().GetKiller().IsPlayer())
{
Player killer = UtilPlayer.searchExact(e.GetLog().GetKiller().GetName());
((Player)e.GetEvent().getEntity()).sendMessage(F.main("Game", "Your killer had " + C.cRed + new DecimalFormat("#").format(killer.getHealth()) + "" + C.cGray + " left."));
((Player)e.GetEvent().getEntity()).sendMessage(F.main("Game", "Your killer had " + C.cRed + (new DecimalFormat("#.#").format((killer.getHealth() / 2))) + "" + C.cGray + " left."));
}
}