From dcf51a74ae461012f992f903c31c7aa61d22fccf Mon Sep 17 00:00:00 2001 From: Taizo 'Tsa6' Simpson Date: Mon, 21 Aug 2017 17:02:21 -0400 Subject: [PATCH] Hide tower restriction visualization when not in build phase --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 122eeeb..d983944 100644 --- a/index.js +++ b/index.js @@ -588,7 +588,7 @@ window.onload = function () { ctx.fillRect(x * mt, y * mt, mt, mt) - if(tile != 1 && !getTowerAt(x, y) && !canPlaceTowerAt(x, y)) { + if(Game.state == 2 && tile != 1 && !getTowerAt(x, y) && !canPlaceTowerAt(x, y)) { ctx.fillStyle = 'rgba(255, 0, 0, 0.45)' ctx.fillRect(x * mt, y * mt, mt, mt) }