From 6672f5f75ee303a630e37b27a0b7f9b7f33731fc Mon Sep 17 00:00:00 2001 From: Calvin Montgomery Date: Thu, 2 Mar 2017 18:53:34 -0800 Subject: [PATCH] Minor fix to new emote method --- www/js/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/js/util.js b/www/js/util.js index 838666dc..75c9d04f 100644 --- a/www/js/util.js +++ b/www/js/util.js @@ -2659,7 +2659,7 @@ function loadEmotes(data) { // Emotes with spaces can't be hashmapped CHANNEL.badEmotes.push(e); } else { - CHANNEL.emoteMap[e.name] = e.image; + CHANNEL.emoteMap[e.name] = e; } } else { console.error("Rejecting invalid emote: " + JSON.stringify(e));