Fixed the ! shortcut for /run

This commit is contained in:
Paul Gauthier 2024-02-06 16:14:27 -08:00
parent 926e393529
commit 873a388693

View file

@ -65,7 +65,7 @@ class Commands:
def run(self, inp): def run(self, inp):
if inp.startswith("!"): if inp.startswith("!"):
self.do_run("run", inp[1:]) return self.do_run("run", inp[1:])
return return
res = self.matching_commands(inp) res = self.matching_commands(inp)