Skip to content

Commit

Permalink
v1.10.1.2 - Typo in tile range getter
Browse files Browse the repository at this point in the history
  • Loading branch information
hamstar0 committed May 1, 2020
1 parent 471a437 commit af72617
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Wormholes/WormholesWorld.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public static (int minTileX, int maxTileX, int minTileY, int maxTileY) GetTileBo

int minTileY = (int)Main.worldSurface;
int maxTileY = Main.maxTilesY - 220;
if( Main.maxTilesY <= 220 || maxTileY <= minTileX ) {
if( Main.maxTilesY <= 220 || maxTileY <= minTileY ) {
minTileY = 0;
maxTileY = Main.maxTilesY;
}
Expand Down
2 changes: 1 addition & 1 deletion Wormholes/build.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
author = hamstar
version = 1.10.1.1
version = 1.10.1.2
displayName = Wormholes
modReferences = HamstarHelpers@5.6.1
buildIgnore = *.csproj, *.user, *.bat, obj\*, bin\*, .vs\*, .git\*
Expand Down

0 comments on commit af72617

Please sign in to comment.