Made $Welcome better!

This commit is contained in:
James Ricketts 2024-11-15 18:11:52 -08:00
parent 407180864b
commit 46dc004fe0

View file

@ -326,8 +326,11 @@ while True:
else: else:
irc.send_irc(channel, nick + ": " + username) irc.send_irc(channel, nick + ": " + username)
elif command[0] == "$Welcome": elif command[0] == "$welcome":
irc.send_irc(channel, "welcome, " + command[1]) if random(1,2) == 1:
irc.send_irc(channel, "Heyo! Welcome to the channel," + command[1])
else:
irc.send_irc(channel, "Welcome, " + command[1])
elif command[0] == "$perms": elif command[0] == "$perms":
if len(command) == 2: if len(command) == 2: