From 55a5e6b9b32a6081832ed1ccabcc536bd9d3fbdf Mon Sep 17 00:00:00 2001 From: edschuy95 Date: Thu, 22 Jan 2026 01:32:01 -0500 Subject: [PATCH] small bugfix --- RA3MP3Playback.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/RA3MP3Playback.py b/RA3MP3Playback.py index 8555cdf..9b1070b 100644 --- a/RA3MP3Playback.py +++ b/RA3MP3Playback.py @@ -650,7 +650,8 @@ def main(): timeout=10 ) choice=menu.show() - chosen_mod = choice.split("\n", 1)[0] + if choice != None: + chosen_mod = choice.split("\n", 1)[0] if chosen_mod != None: run_mod = ["+set", "fs_game", chosen_mod]