This commit is contained in:
PC-20230316NUNE\Administrator
2024-08-19 20:20:41 +08:00
parent a1f2730025
commit 17cb342387
21 changed files with 457 additions and 459 deletions

View File

@@ -31,7 +31,7 @@ namespace JNGame.Sync.State.Tile
{
if (xTuple.X >= 0 && xTuple.Y >= 0)
{
return xTuple.Y <= Tiles.Length && xTuple.X <= Tiles[0].Length;
return xTuple.Y < Tiles.Length && xTuple.X < Tiles[0].Length;
}
return false;
}