diff options
Diffstat (limited to 'hercules/code/clienttoserver/maps.py')
-rw-r--r-- | hercules/code/clienttoserver/maps.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hercules/code/clienttoserver/maps.py b/hercules/code/clienttoserver/maps.py index 0cdafb4..a24899a 100644 --- a/hercules/code/clienttoserver/maps.py +++ b/hercules/code/clienttoserver/maps.py @@ -41,8 +41,8 @@ def findFirstGid(tilesets, tile): # 4 - sit, walkable ground # 5 - none def convertTileType(tile): -# if tile == 4: -# tile = 0; + if tile == 5: + tile = 0; if tile > 128 or tile < 0: tile = 1 return tile |