fixed annoying color bug!

This commit is contained in:
Mini-Chiss 2015-07-27 15:53:39 +02:00
parent 8fd3a3a838
commit 0c4a7a847f

View File

@ -71,7 +71,7 @@ public class TimeCommand extends CommandBase<StatsManager>
else
{
long time = Plugin.Get(target).getStat("Global.TimeInGame");
UtilPlayer.message(caller, F.main("Time", F.name(target.getName() + " has spent " + F.elem(UtilTime.convertString(time * 1000L, 1, UtilTime.TimeUnit.FIT)) + " in game")));
UtilPlayer.message(caller, F.main("Time", F.name(target.getName()) + " has spent " + F.elem(UtilTime.convertString(time * 1000L, 1, UtilTime.TimeUnit.FIT)) + " in game"));
}
}
}