diff --git a/torchlight_changes_unloze/torchlight3/Torchlight/Commands.py b/torchlight_changes_unloze/torchlight3/Torchlight/Commands.py index 91ed7b6a..e8270cb8 100755 --- a/torchlight_changes_unloze/torchlight3/Torchlight/Commands.py +++ b/torchlight_changes_unloze/torchlight3/Torchlight/Commands.py @@ -561,7 +561,7 @@ class VoiceCommands(BaseCommand): if isinstance(Sounds, list): if Num and Num > 0 and Num <= len(Sounds): Sound = Sounds[Num - 1] - elif message[1] and message[1][0].isdigit(): #first character is digit, so its not pitch or tempo + elif message[1] and not message[1].startswith("tempo=") and not message[1].startswith("pitch="): #it does not start with pitch or with tempo, so must be a number or alias. searching = message[1].startswith('?') search = message[1][1:] if searching else message[1].split(" ")[0] Sound = None