Skip to content

Commit 3f89b6d

Browse files
committed
Fix accidentally only showing the first character of a herald
1 parent 67bf83e commit 3f89b6d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/herald.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def welcome(nick, message, bot, chan):
101101

102102
welcome = herald_cache[chan.casefold()].get(nick.casefold())
103103
if welcome:
104-
greet = welcome[0]
104+
greet = welcome
105105
stripped = greet.translate(dict.fromkeys(["\u200b", " ", "\u202f", "\x02"]))
106106
stripped = colors_re.sub("", stripped)
107107
greet = re.sub(bino_re, 'flenny', greet)

0 commit comments

Comments
 (0)