From 146245f1938cb09431763f9e8948316251b28e0f Mon Sep 17 00:00:00 2001 From: Gregoire Parant Date: Sat, 24 Oct 2020 12:17:51 +0200 Subject: [PATCH] Fix start position --- front/src/Phaser/Game/GameScene.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/Phaser/Game/GameScene.ts b/front/src/Phaser/Game/GameScene.ts index 0d7e9236..b97ec737 100644 --- a/front/src/Phaser/Game/GameScene.ts +++ b/front/src/Phaser/Game/GameScene.ts @@ -1132,7 +1132,7 @@ export class GameScene extends ResizableScene implements CenterListener { } arcGroup = this.add.ellipse( Math.round(groupPositionMessage.position.x), - Math.round(groupPositionMessage.position.y), + Math.round(groupPositionMessage.position.y) + ((widthEllipse - heightEllipse) / 2), widthEllipse, heightEllipse, 0xFFFFFF,