From 781c69387cc78859d2296281974fc666509e2692 Mon Sep 17 00:00:00 2001 From: Lurkars Date: Mon, 20 Sep 2021 15:22:54 +0200 Subject: [PATCH] fix wrong font name --- front/src/Phaser/Entity/Character.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/Phaser/Entity/Character.ts b/front/src/Phaser/Entity/Character.ts index c2e89cb2..d962968e 100644 --- a/front/src/Phaser/Entity/Character.ts +++ b/front/src/Phaser/Entity/Character.ts @@ -293,7 +293,7 @@ export abstract class Character extends Container { this.cancelPreviousEmote(); const emoteY = -45; this.playerName.setVisible(false); - this.emote = new Text(this.scene, -10, 0, emote, { fontFamily: '"twemoji"', fontSize: "20px" }); + this.emote = new Text(this.scene, -10, 0, emote, { fontFamily: '"Twemoji Mozilla"', fontSize: "20px" }); this.emote.setAlpha(0); this.add(this.emote); this.createStartTransition(emoteY);