summaryrefslogtreecommitdiff
path: root/tilehelper.py
diff options
context:
space:
mode:
authorjomo <github@jomo.tv>2014-06-10 00:32:48 +0200
committerjomo <github@jomo.tv>2014-06-10 00:32:48 +0200
commite466d5426cd6cdcc1d250f44b6f16c215b3affc9 (patch)
tree4a43b7b55426b786edbe8863746a90ec1828f331 /tilehelper.py
parentaad5cbe07d204f01074b865c3201dec892a09368 (diff)
fix endless loop?
Diffstat (limited to 'tilehelper.py')
-rw-r--r--tilehelper.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tilehelper.py b/tilehelper.py
index 7000578..02b299a 100644
--- a/tilehelper.py
+++ b/tilehelper.py
@@ -7,12 +7,12 @@ tilehelpers = [
]
dirmap = {
# [x, y, z]
- "n": [0, 0, -1],
+ "n": [0, 0, -2],
"e": [1, 0, 0],
"s": [0, 0, 1],
- "w": [-1, 0, 0],
+ "w": [-2, 0, 0],
"u": [0, 1, 0],
- "d": [0, -1, 0]
+ "d": [0, -2, 0]
}
# FIXME: disallow multiple regions by single person.