Changes on bomb error messages after QA recommendations.

This commit is contained in:
Thanos paravantis 2015-10-04 21:23:50 +03:00
parent c2518bc6c4
commit 9c1ba5f3d1

View File

@ -1523,7 +1523,7 @@ public class MineStrike extends TeamGame
// Fixed bomb able to be planted after the round is over.
if (_roundOver)
{
UtilPlayer.message(player, F.main("Game", "You cannot plant the Bomb once the round is over."));
UtilPlayer.message(player, F.main("Game", "You cannot plant the bomb once the round is over."));
event.setCancelled(true);
return;
}
@ -1531,14 +1531,14 @@ public class MineStrike extends TeamGame
// Added a small tip for players that are trying to right-click with the bomb.
if (UtilEvent.isAction(event, ActionType.L))
{
UtilPlayer.message(player, F.main("Game", "You must " + F.elem("Right-Click") + " while holding the bomb."));
UtilPlayer.message(player, F.main("Game", "You must " + F.elem("Right-Click") + " while holding the bomb to plant it."));
event.setCancelled(true);
return;
}
if (!UtilEnt.isGrounded(player))
{
UtilPlayer.message(player, F.main("Game", "You can only plant the Bomb on the ground."));
UtilPlayer.message(player, F.main("Game", "You can only plant the bomb on the ground."));
event.setCancelled(true);
return;
}
@ -1546,7 +1546,7 @@ public class MineStrike extends TeamGame
//Should never occur with 1 Bomb
if (_bombPlanter != null)
{
UtilPlayer.message(player, F.main("Game", "Someone else is planting a Bomb..."));
UtilPlayer.message(player, F.main("Game", "Someone else is planting the bomb."));
event.setCancelled(true);
return;
}
@ -1565,7 +1565,7 @@ public class MineStrike extends TeamGame
//Too Far
if (!near)
{
UtilPlayer.message(player, F.main("Game", "You can only plant the Bomb at a bomb site!"));
UtilPlayer.message(player, F.main("Game", "You can only plant the bomb at a bomb site."));
event.setCancelled(true);
return;
}
@ -1573,7 +1573,7 @@ public class MineStrike extends TeamGame
_bombPlanter = player;
_bombPlanter.setExp(0f);
UtilPlayer.message(player, F.main("Game", "You are placing the Bomb."));
UtilPlayer.message(player, F.main("Game", "You are now placing the bomb."));
//Radio
playSound(Radio.T_BOMB_PLANT, null, GetTeam(_bombPlanter));