summaryrefslogtreecommitdiff
path: root/scripts/mapgen.py
diff options
context:
space:
mode:
authortom <tom@ground-control>2015-11-18 20:54:40 -0600
committertom <tom@ground-control>2015-11-18 20:54:40 -0600
commit0fc9844e4e81f9f78886a75eb15e3cf17d6adc36 (patch)
tree000ccf5d0426d6ce4f470107fb9f2581394a328f /scripts/mapgen.py
parenta760b9339a98281a8a1072d03dbf41f08eb696a6 (diff)
test works now
Diffstat (limited to 'scripts/mapgen.py')
-rw-r--r--scripts/mapgen.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/mapgen.py b/scripts/mapgen.py
index 9595061..a3d4b23 100644
--- a/scripts/mapgen.py
+++ b/scripts/mapgen.py
@@ -3,10 +3,10 @@ from random import randint
high = [' ',',','.',':',';']
low = ['O','0']
-x = 300
-y = 100
+x = 500
+y = 500
-f = open("map","w+")
+f = open("map.txt","w+")
for i in range(y):
for j in range(x):