change admin nick to 'jkhsjdhjs'

This commit is contained in:
jkhsjdhjs 2023-07-16 22:27:19 +00:00
parent 818110e485
commit 2cb3eec4aa

View File

@ -466,7 +466,7 @@ def command_loop():
say(channel, "Error :(") say(channel, "Error :(")
elif msg == ".quit": elif msg == ".quit":
if ircnick == "elmo": if ircnick == "jkhsjdhjs":
say(channel, "Flying to mars...") say(channel, "Flying to mars...")
print("got quit command. exiting...") print("got quit command. exiting...")
part(channel) part(channel)
@ -475,7 +475,7 @@ def command_loop():
say(channel, "You are not my master!") say(channel, "You are not my master!")
elif msg.startswith(".say"): elif msg.startswith(".say"):
if ircnick == "elmo": if ircnick == "jkhsjdhjs":
try: try:
sayit = msg.split(" ", 1)[1] sayit = msg.split(" ", 1)[1]
say(channel, str(sayit)) say(channel, str(sayit))
@ -486,7 +486,7 @@ def command_loop():
say(channel, "You are not my master!") say(channel, "You are not my master!")
elif msg.startswith(".debug"): elif msg.startswith(".debug"):
if ircnick == "elmo": if ircnick == "jkhsjdhjs":
try: try:
debugmsg = msg.split(" ", 1)[1] debugmsg = msg.split(" ", 1)[1]
raw(debugmsg) raw(debugmsg)