summaryrefslogtreecommitdiff
path: root/scripts/mapgen.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/mapgen.py')
-rw-r--r--scripts/mapgen.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/mapgen.py b/scripts/mapgen.py
index a3d4b23..fc89958 100644
--- a/scripts/mapgen.py
+++ b/scripts/mapgen.py
@@ -3,8 +3,8 @@ from random import randint
high = [' ',',','.',':',';']
low = ['O','0']
-x = 500
-y = 500
+x = int(raw_input("width"))
+y = int(raw_input("height"))
f = open("map.txt","w+")