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