Revert previous commit.

Double check data structure, SendTileSquare does not attempt to save bandwidth.
This commit is contained in:
Deathmax 2011-12-04 16:12:45 +08:00
parent fc7f20566e
commit d77fc4d567
2 changed files with 0 additions and 13 deletions

View file

@ -221,13 +221,6 @@ namespace TShockAPI
for (int y = 0; y < size; y++)
{
tiles[x, y] = new NetTile(args.Data);
if (tiles[x, y].SameTiles > 0)
{
var num = tiles[x, y].SameTiles;
var tile = tiles[x, y];
for (y++; y < y + num + 1; y++)
tiles[x, y] = tile;
}
}
}