better colors

This commit is contained in:
Mini-Chiss 2015-07-29 15:48:12 +02:00
parent 51cef64554
commit ab2c865ab3
1 changed files with 3 additions and 3 deletions

View File

@ -182,7 +182,7 @@ public class GameHostManager implements Listener
@EventHandler
public void voteNotification(UpdateEvent e)
{
if (e.getType() != UpdateType.FASTER)
if (e.getType() != UpdateType.FAST)
return;
if (!_voteInProgress)
@ -190,13 +190,13 @@ public class GameHostManager implements Listener
if (_voteNotificationStage == 1)
{
UtilTextBottom.display(C.cWhite + "Type " + C.cGreen + "/vote" + C.cWhite + "to vote for next game", UtilServer.getPlayers());
UtilTextBottom.display(C.cYellow + C.Bold + "Type " + C.cGold + C.Bold + "/vote" + C.cYellow + C.Bold + " to vote for next game", UtilServer.getPlayers());
_voteNotificationStage++;
return;
}
else if (_voteNotificationStage == 2)
{
UtilTextBottom.display(C.cWhite + "Type " + C.cYellow + "/vote" + C.cWhite + "to vote for next game", UtilServer.getPlayers());
UtilTextBottom.display(C.cGold + C.Bold + "Type " + C.cYellow + C.Bold + "/vote" + C.cGold + C.Bold + " to vote for next game", UtilServer.getPlayers());
_voteNotificationStage = 1;
return;
}