bring back emojis!

This commit is contained in:
_Bastler
2022-01-03 13:42:13 +01:00
parent be6d7c7151
commit 4d520a5994
2 changed files with 4 additions and 7 deletions
+2 -2
View File
@@ -653,8 +653,8 @@ export class GameScene extends DirtyScene {
this.emoteUnsubscribe = emoteStore.subscribe((emote) => {
if (emote) {
this.CurrentPlayer?.playEmote(emote.url);
this.connection?.emitEmoteEvent(emote.url);
this.CurrentPlayer?.playEmote(emote.unicode);
this.connection?.emitEmoteEvent(emote.unicode);
emoteStore.set(null);
}
});