diff --git a/src/fenrir-package/commands/commands/curr_screen.py b/src/fenrir-package/commands/commands/curr_screen.py index d2e370ce..b7237aed 100644 --- a/src/fenrir-package/commands/commands/curr_screen.py +++ b/src/fenrir-package/commands/commands/curr_screen.py @@ -5,7 +5,7 @@ class command(): pass def run(self, environment): if environment['screenData']['newContentText'].strip(" \t\n") == '': - environment['runtime']['outputManager'].presentText(environment, "screen is empty", interrupt=True) + environment['runtime']['outputManager'].presentText(environment, "screen is empty", soundIcon='EmptyLine', interrupt=True) else: environment['runtime']['outputManager'].presentText(environment, environment['screenData']['newContentText'],interrupt=True) return environment