From 436e91c1f11654f625e5bdf21273f6a5ba130773 Mon Sep 17 00:00:00 2001 From: Lucas Nicodemus Date: Sat, 9 Dec 2017 10:30:20 -0700 Subject: [PATCH] Change STS to 1 tile for @bartico6's quality of life changes Since these reverts are on a per-tile basis, we only need to revert the first block not surrounding ones. Note: May cause problems with dropped sand because of gravity. --- TShockAPI/Bouncer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TShockAPI/Bouncer.cs b/TShockAPI/Bouncer.cs index f472b40b..ed1caba1 100644 --- a/TShockAPI/Bouncer.cs +++ b/TShockAPI/Bouncer.cs @@ -201,7 +201,7 @@ namespace TShockAPI if (!TShock.Utils.TilePlacementValid(x, y)) { - args.Player.SendTileSquare(x, y, 4); + args.Player.SendTileSquare(x, y, 1); args.Handled = true; return; } @@ -303,7 +303,7 @@ namespace TShockAPI if (!TShock.Utils.TilePlacementValid(tileX, tileY)) { - args.Player.SendTileSquare(tileX, tileY, 4); + args.Player.SendTileSquare(tileX, tileY, 1); args.Handled = true; return; }