updated padding values
This commit is contained in:
parent
f7de3262d9
commit
3f25eb13b4
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Reference in a new issue