Fix bouncer debug message being incorrect

This commit is contained in:
Lucas Nicodemus 2020-05-24 14:04:11 -07:00
parent 40b7a2db42
commit 35c103e011
No known key found for this signature in database
GPG key ID: A07BD9023D1664DB

View file

@ -528,7 +528,7 @@ namespace TShockAPI
if (args.Player.HasPermission(Permissions.allowclientsideworldedit))
{
TShock.Log.ConsoleDebug("Bouncer / SendTileSquare rejected clientside world edit from {0}", args.Player.Name);
TShock.Log.ConsoleDebug("Bouncer / SendTileSquare accepted clientside world edit from {0}", args.Player.Name);
args.Handled = false;
return;
}