That should be all of it

This commit is contained in:
MarioE 2012-06-04 21:28:47 -04:00
parent f4dbb552da
commit b85bed52d2
4 changed files with 15 additions and 15 deletions

View file

@ -1101,11 +1101,11 @@ namespace TShockAPI
var players = TShock.Utils.FindPlayer(args.Parameters[0]);
if( players.Count < 1 )
{
args.Player.SendErrorMessage("No players match " + args.Parameters[0]);
args.Player.SendErrorMessage("No players match " + args.Parameters[0] + "!");
}
else if( players.Count > 1 )
{
args.Player.SendErrorMessage( players.Count + " players matched " + args.Parameters[0]);
args.Player.SendErrorMessage( players.Count + " players matched " + args.Parameters[0] + "!");
}
else if (TShock.Config.ServerSideInventory)
{