From 0fc9844e4e81f9f78886a75eb15e3cf17d6adc36 Mon Sep 17 00:00:00 2001 From: tom Date: Wed, 18 Nov 2015 20:54:40 -0600 Subject: test works now --- scripts/mapgen.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts/mapgen.py') 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): -- cgit v1.2.3