summaryrefslogtreecommitdiff
path: root/scripts/mapgen.py
diff options
context:
space:
mode:
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):