Removed addLegacy and loadLegacy.
This commit is contained in:
parent
6943dab44e
commit
37e426e89f
1 changed files with 0 additions and 16 deletions
|
@ -9,29 +9,13 @@ const MamiEmotes = (function() {
|
||||||
emotes.push(emote);
|
emotes.push(emote);
|
||||||
};
|
};
|
||||||
|
|
||||||
const addLegacy = function(emoteOld) {
|
|
||||||
const emote = {
|
|
||||||
url: emoteOld.Image,
|
|
||||||
min_rank: emoteOld.Hierarchy,
|
|
||||||
strings: [],
|
|
||||||
};
|
|
||||||
for(let i = 0; i < emoteOld.Text.length; ++i)
|
|
||||||
emote.strings.push(emoteOld.Text[i].slice(1, -1));
|
|
||||||
add(emote);
|
|
||||||
};
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
clear: clear,
|
clear: clear,
|
||||||
add: add,
|
add: add,
|
||||||
addLegacy: addLegacy,
|
|
||||||
load: function(batch) {
|
load: function(batch) {
|
||||||
for(const emote of batch)
|
for(const emote of batch)
|
||||||
add(emote);
|
add(emote);
|
||||||
},
|
},
|
||||||
loadLegacy: function(batch) {
|
|
||||||
for(const emote of batch)
|
|
||||||
addLegacy(emote);
|
|
||||||
},
|
|
||||||
forEach: function(minRank, callback) {
|
forEach: function(minRank, callback) {
|
||||||
for(const emote of emotes)
|
for(const emote of emotes)
|
||||||
if(!emote.min_rank || emote.min_rank <= minRank)
|
if(!emote.min_rank || emote.min_rank <= minRank)
|
||||||
|
|
Loading…
Reference in a new issue