Skip to content

Commit

Permalink
Update Pyramid_StreamlabsSystem.py
Browse files Browse the repository at this point in the history
  • Loading branch information
aseroff authored Apr 26, 2020
1 parent 7651d63 commit dd33c45
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Pyramid_StreamlabsSystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def Execute(data):

def pyramid_destroyed(username):
global USER
if WIDTH > 2 or DESC:
if WIDTH >= 2 or DESC:
if (username == USER):
if SETTINGS["responseChoked"] != "":
Parent.SendStreamMessage(SETTINGS["responseChoked"].replace("$user", username))
Expand Down Expand Up @@ -108,10 +108,10 @@ def process(message, username):
if split[0] == MSG:
COUNT = len(split)
elif len(split) == 1:
MSG = message
MSG = split[0]
USER = username
COUNT = 1
WIDTH = 1
WIDTH = 0
DESC = False
else:
reset()
Expand Down

0 comments on commit dd33c45

Please sign in to comment.