Reverted STS change, added STSC, fixed STS/STSC usage.

This commit is contained in:
0x3fcf1bbd 2022-02-01 16:00:05 +01:00
parent 7f0daba593
commit 874b3b2746
7 changed files with 87 additions and 67 deletions

View file

@ -171,7 +171,7 @@ namespace TShockAPI
}
// Revert all tile changes and handle the event
player.SendTileSquare(e.X, e.Y, 4);
player.SendTileSquareCentered(e.X, e.Y, 4);
e.Handled = true;
}
@ -190,7 +190,7 @@ namespace TShockAPI
player.AwaitingTempPoint = 0;
// Revert all tile changes and handle the event
player.SendTileSquare(e.X, e.Y, 4);
player.SendTileSquareCentered(e.X, e.Y, 4);
e.Handled = true;
}