Updates and fixes

This commit is contained in:
Natsumi
2022-01-25 21:39:47 +13:00
parent 85373b9032
commit 6e80180763
4 changed files with 112 additions and 45 deletions

View File

@@ -564,7 +564,7 @@ Vue.component('marquee-text', MarqueeText);
};
$app.methods.addEntryHudFeed = function (json) {
var {displayName, text, color} = JSON.parse(json);
var {displayName, text, color, avatar, inCache} = JSON.parse(json);
var combo = 1;
this.hudFeed.forEach((item) => {
if (item.displayName === displayName && item.text === text) {
@@ -577,7 +577,9 @@ Vue.component('marquee-text', MarqueeText);
displayName,
text,
combo,
color
color,
avatar,
inCache
});
this.cleanHudFeed();
};