forked from LimnoriaPlugins/UnicodeEmoji
Compare commits
3 Commits
4962b3ef3d
...
f462bb1798
Author | SHA1 | Date | |
---|---|---|---|
f462bb1798 | |||
4c72735bfe | |||
efb390619b |
@ -43,7 +43,7 @@ emoji = {'innocent':'ʘ‿ʘ',
|
||||
'tableflip':'(╯°□°)╯︵ ┻━┻',
|
||||
'putbacktable':'┬─┬ ノ( ゜-゜ノ)',
|
||||
'tidy-up':'┬─┬⃰͡ (ᵔᵕᵔ͜ )',
|
||||
'double-Flip':'┻━┻ ︵ヽ(`Д´)ノ︵ ┻━┻',
|
||||
'double-flip':'┻━┻ ︵ヽ(`Д´)ノ︵ ┻━┻',
|
||||
'fisticuffs':'ლ(`ー´ლ)',
|
||||
'cute-bear':'ʕ•ᴥ•ʔ',
|
||||
'squinting-bear':'ʕᵔᴥᵔʔ',
|
||||
@ -157,9 +157,13 @@ class UnicodeEmoji(callbacks.Plugin):
|
||||
def e(self, irc, msg, args, emote):
|
||||
"""<emote>
|
||||
|
||||
Prints the Unicode emoji as listed here https://gist.github.com/mogad0n/476c3880dc0e0a059ed03efa265e50f7
|
||||
Prints the Unicode emoji as listed with `!e list`
|
||||
"""
|
||||
|
||||
if emote == 'list':
|
||||
irc.reply(', '.join(emoji.keys()), msg=msg, prefixNick=False)
|
||||
return
|
||||
|
||||
re = emoji.get(emote.lower())
|
||||
if re is None:
|
||||
re = emoji['fuck-off']
|
||||
|
Loading…
x
Reference in New Issue
Block a user