diff options
-rw-r--r-- | helpers/action.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/action.py b/helpers/action.py index 42a08d0..d4c6252 100644 --- a/helpers/action.py +++ b/helpers/action.py | |||
@@ -69,7 +69,7 @@ class Action: | |||
69 | music.stop(fade_out = fade_out) | 69 | music.stop(fade_out = fade_out) |
70 | else: | 70 | else: |
71 | if fade_out > 0: | 71 | if fade_out > 0: |
72 | pygame.fadeout(int(fade_out * 1000)) | 72 | pygame.mixer.fadeout(int(fade_out * 1000)) |
73 | else: | 73 | else: |
74 | pygame.mixer.stop() | 74 | pygame.mixer.stop() |
75 | 75 | ||