From 0384518b023e23b9d21e11998a2ee7a7a478285e Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Tue, 24 Jul 2018 13:38:00 +0200 Subject: [PATCH] Remove Debug Print --- lib/game/Game.dart | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/game/Game.dart b/lib/game/Game.dart index 5c529fb..48a5e70 100644 --- a/lib/game/Game.dart +++ b/lib/game/Game.dart @@ -24,7 +24,6 @@ class Game { // In-World Logic Updates void update([num dt]) { Point next = isRandom ? nextPosRandom() : nextPosOrdered(_curPos); - print(_curPos.toString()); grid[next.y][next.x] = new Color(rng.nextInt(255), rng.nextInt(255), rng.nextInt(255)); _curPos = next;