increase number of enemies

This commit is contained in:
PAlexanderFranklin 2023-05-17 06:06:01 -07:00
parent 693866c443
commit 43c5e2ae95

View File

@ -22,7 +22,7 @@ def generateMap():
except Exception as error:
continue
for i in range(3):
for i in range(25):
for j in range(50):
try:
spot = [random.randint(0, tileCountx - 1), random.randint(0, tileCounty - 1)]