This commit is contained in:
deathbybandaid 2022-02-24 10:35:35 -05:00
parent 79b75e0521
commit 17f9ea1f30

View File

@ -21,9 +21,14 @@ def prerun():
# Handling for first command in series # Handling for first command in series
if comrun.is_rulematch: if comrun.is_rulematch:
print("is_rulematch")
if not comrun.is_real_command: if not comrun.is_real_command:
print("not is_real_command")
sb.commands.dispatch(comrun.command) sb.commands.dispatch(comrun.command)
else:
print("is_real_command")
else: else:
print("not is_rulematch")
sb.commands.dispatch(comrun.command) sb.commands.dispatch(comrun.command)
# All other commands # All other commands