Added Dynamite/Bomb projectile checks.

Fixed issue where Kill Tile Abuse doesn't check for config values.
This commit is contained in:
Deathmax 2011-06-03 21:43:05 +08:00
parent 60156af877
commit f1d821a554
5 changed files with 57 additions and 9 deletions

View file

@ -254,10 +254,10 @@ namespace TShockAPI
}
/// <summary>
/// Adds someone to greifers.txt
/// Adds someone to griefers.txt
/// </summary>
/// <param name="ply">int player</param>
public static void HandleGreifer(int ply)
public static void HandleGriefer(int ply)
{
if (!TShock.players[ply].IsAdmin())
{
@ -269,7 +269,7 @@ namespace TShockAPI
Netplay.serverSock[ply].kill = true;
Netplay.serverSock[ply].Reset();
NetMessage.syncPlayers();
Tools.Broadcast(cheater + " was " + (ConfigurationManager.banCheater ? "banned " : "kicked ") + "for greifing.");
Tools.Broadcast(cheater + " was " + (ConfigurationManager.banGriefer ? "banned " : "kicked ") + "for griefing.");
}
}