mirror of https://github.com/calzoneman/sync.git
Minor fix to new emote method
This commit is contained in:
parent
70be35e3fa
commit
6672f5f75e
|
@ -2659,7 +2659,7 @@ function loadEmotes(data) {
|
||||||
// Emotes with spaces can't be hashmapped
|
// Emotes with spaces can't be hashmapped
|
||||||
CHANNEL.badEmotes.push(e);
|
CHANNEL.badEmotes.push(e);
|
||||||
} else {
|
} else {
|
||||||
CHANNEL.emoteMap[e.name] = e.image;
|
CHANNEL.emoteMap[e.name] = e;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
console.error("Rejecting invalid emote: " + JSON.stringify(e));
|
console.error("Rejecting invalid emote: " + JSON.stringify(e));
|
||||||
|
|
Loading…
Reference in New Issue