Skip to content

Commit

Permalink
Merge pull request #6 from Zedb0T/red-eco-and-no-debug-mode
Browse files Browse the repository at this point in the history
Red eco and no debug mode
  • Loading branch information
Zedb0T authored Jul 25, 2022
2 parents 2d7d5a8 + da01cf5 commit f7bebb7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/twitchcommands.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ def gamecontrol():
global message

while True:

if "!trip" == args[0].lower():
args = message.split(" ")
if "!trip" == message.lower():
print(message)
sendForm("(send-event *target* 'loading)")
message = ""
Expand Down Expand Up @@ -173,7 +173,7 @@ def gamecontrol():
sendForm("(set! (-> *FACT-bank* eco-full-timeout) (seconds 20))")
message = ""

if "!gotolevel" == args[0].lower():
if "!gotolevel" == message.lower():
print("(start 'play (get-continue-by-name *game-info* \""+args[1]+"\"))")
print("(start 'play (get-continue-by-name *game-info* \""+args[1]+"\"))")
print("(start 'play (get-continue-by-name *game-info* \""+args[1]+"\"))")
Expand Down

0 comments on commit f7bebb7

Please sign in to comment.