fix grammar bug

This commit is contained in:
fooify 2015-06-30 09:19:21 -07:00
parent 11fb02a594
commit d2cc8d5077
1 changed files with 5 additions and 1 deletions

View File

@ -1868,7 +1868,11 @@ public class MineStrike extends TeamGame
ChatColor color = ChatColor.GRAY;
if (winner != null)
{
winnerLine= winner.GetColor() + C.Bold + winner.GetName() + " has won the round!";
if(winner.GetName().contains("Bombers")) {
winnerLine= winner.GetColor() + C.Bold + winner.GetName() + " have won the round!";
} else {
winnerLine= winner.GetColor() + C.Bold + winner.GetName() + " has won the round!";
}
addScore(winner);
drawScoreboard();
color = winner.GetColor();