forgot to disable main sound
This commit is contained in:
parent
5b14f36770
commit
7cf6638cb9
1 changed files with 1 additions and 1 deletions
2
game.py
2
game.py
|
@ -61,7 +61,7 @@ def play(window, options):
|
||||||
"Powerup":[FPS*15, FPS*15]
|
"Powerup":[FPS*15, FPS*15]
|
||||||
}
|
}
|
||||||
init_sounds()
|
init_sounds()
|
||||||
Sounds["main"].play(loops=-1) #Start background music
|
if options["Sounds"]: Sounds["main"].play(loops=-1) #Start background music
|
||||||
|
|
||||||
logging.info("Game Started.")
|
logging.info("Game Started.")
|
||||||
PLAYING_GAME = True
|
PLAYING_GAME = True
|
||||||
|
|
Reference in a new issue