1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-27 21:05:53 +00:00
* Experiment Updated: Yet another update for the MQTT PubSub experiment.
This commit is contained in:
SirStendec 2023-11-01 16:25:02 -04:00
parent 4d2b65e7c2
commit 0eaf1a55be
4 changed files with 8 additions and 4 deletions

View file

@ -648,6 +648,8 @@ export default class Emotes extends Module {
return;
this.addEmoteToSet(set_id, emote);
// TODO: Notify users?
});
this.on('pubsub:command:remove_emote', msg => {
@ -658,6 +660,8 @@ export default class Emotes extends Module {
return;
this.removeEmoteFromSet(set_id, emote_id);
// TODO: Notify users?
});
this.on('chat:reload-data', flags => {