diff --git a/TShockAPI/Bouncer.cs b/TShockAPI/Bouncer.cs index c37db4ab..f472b40b 100644 --- a/TShockAPI/Bouncer.cs +++ b/TShockAPI/Bouncer.cs @@ -201,14 +201,14 @@ namespace TShockAPI if (!TShock.Utils.TilePlacementValid(x, y)) { - args.Player.SendTileSquare(tileX, tileY, 4); + args.Player.SendTileSquare(x, y, 4); args.Handled = true; return; } if (args.Player.Dead && TShock.Config.PreventDeadModification) { - args.Player.SendTileSquare(tileX, tileY, 4); + args.Player.SendTileSquare(x, y, 4); args.Handled = true; return; }