1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-03 08:28:31 +00:00
* Fixed: FFZ not correctly loading on dashboard pages.
This commit is contained in:
SirStendec 2024-01-24 12:12:08 -05:00
parent e8bb25f982
commit f89938ba5a
5 changed files with 21 additions and 12 deletions

View file

@ -869,7 +869,10 @@ export default class Emotes extends Module {
});
if ( msg )
chat.addNotice('*', `[FFZ] ${msg}`);
chat.addNotice('*', {
icon: 'ffz-i-zreknarf',
message: msg
}); // `[FFZ] ${msg}`);
}
}
}
@ -2462,4 +2465,4 @@ function determineSetType(set) {
return EmoteTypes.BitsTier;
return EmoteTypes.Global;
}
}