fix emoji

This commit is contained in:
_Bastler
2022-05-12 09:29:18 +02:00
parent 895499a9bc
commit d12f89dfb5
3 changed files with 3 additions and 6 deletions
+2 -2
View File
@@ -912,8 +912,8 @@ export class GameScene extends DirtyScene {
this.emoteUnsubscriber = 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);
}
});