diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-09-12 03:14:35 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-09-12 03:14:35 +0300 |
commit | 460822ea6cef840e0f478918547a806b231c3dc6 (patch) | |
tree | 729118f0273a182b62628aae87ae8c9fe9b5f1c2 /hercules/code/tileutils.py | |
parent | d3648ee52a4860111afe9049713d788f60e5b588 (diff) | |
download | tools-460822ea6cef840e0f478918547a806b231c3dc6.tar.gz tools-460822ea6cef840e0f478918547a806b231c3dc6.tar.bz2 tools-460822ea6cef840e0f478918547a806b231c3dc6.tar.xz tools-460822ea6cef840e0f478918547a806b231c3dc6.zip |
Fix different issues in tools found by pyflakes.
Diffstat (limited to 'hercules/code/tileutils.py')
-rw-r--r-- | hercules/code/tileutils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hercules/code/tileutils.py b/hercules/code/tileutils.py index c5457e7..42e7a84 100644 --- a/hercules/code/tileutils.py +++ b/hercules/code/tileutils.py @@ -14,7 +14,7 @@ def getTileData(mapData, x, y, sx): def getTile(data): normal = 0 - collison = 0 + collision = 0 if data == 0: # 000 normal walkable normal = 1 collision = 5 |