From 634af8859ff36c9ace88bfef44f21e4bfc48a894 Mon Sep 17 00:00:00 2001 From: Mauricio Rivera Date: Wed, 23 Oct 2019 05:34:24 -0700 Subject: [PATCH] Code style 197 (#213) --- Server/src/main/typescript/World.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Server/src/main/typescript/World.ts b/Server/src/main/typescript/World.ts index 808fb6d..2089b6e 100644 --- a/Server/src/main/typescript/World.ts +++ b/Server/src/main/typescript/World.ts @@ -296,7 +296,6 @@ class World { this.tiles.push(tile); mar.isoGroup.add(tile); - } } @@ -318,6 +317,10 @@ class World { mar.game.world.height = (size + 2) * 64; } + /** + * Set Message text + * @param msg string to set as the message + */ public setBigMessage(msg: string) { this.bigMessage = mar.game.add.text(908, 450, msg, { fontSize: 46, @@ -478,5 +481,3 @@ class WorldArrow extends Phaser.Plugin.Isometric.IsoSprite { } } - -