diff --git a/TShockAPI/TSPlayer.cs b/TShockAPI/TSPlayer.cs
index 00ff790b..c4c094e9 100644
--- a/TShockAPI/TSPlayer.cs
+++ b/TShockAPI/TSPlayer.cs
@@ -1311,7 +1311,7 @@ namespace TShockAPI
/// true if the tile square was sent successfully, else false
public virtual bool SendTileSquare(int x, int y, int size = 10)
{
- return SendTileRect((short)x, (short)y, (byte)size, (byte)size);
+ return SendTileRect((short)(x-(size/2)), (short)(y-(size/2)), (byte)size, (byte)size);
}
///