1
Fork 0

updated padding values

This commit is contained in:
Jake Howard 2015-05-12 15:00:50 +01:00
parent f7de3262d9
commit 3f25eb13b4
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ Levels = [
def generate_random_level():
logging.info("Generating a random level!")
rows = randint(1, 12)
padding = randint(0, 30)
padding = randint(5, 30)
firebacks = randint(0, 15)
powerups = randint(0, 15)
return Level_Template(rows, padding, firebacks, powerups)