From 760f5518da6a38e81224b4726238386ace501688 Mon Sep 17 00:00:00 2001 From: Lucas Nicodemus Date: Sat, 9 Dec 2017 01:50:58 -0700 Subject: [PATCH] More patching to fix potential desync (thanks @bartico6)! --- TShockAPI/Bouncer.cs | 2 ++ 1 file changed, 2 insertions(+) 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; }