From 292d1d365e7e3b286463c42d97f86ff1e6b369c5 Mon Sep 17 00:00:00 2001 From: dylan <> Date: Tue, 9 May 2023 19:42:30 -0700 Subject: [PATCH] Remove console log --- maptab.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/maptab.ts b/maptab.ts index f4ae0ce..6cb745e 100644 --- a/maptab.ts +++ b/maptab.ts @@ -21,7 +21,6 @@ const state = { const xx = this.selectedPatch%overviewW; const yy = Math.floor(this.selectedPatch/overviewW); const cell = (yy+patchH*Math.floor(i/patchW))*overviewW*patchW+xx*patchW+i%patchW; - console.log({i, cell, xx, yy}); this.map[cell] = [sprsheet, sprite]; }, get patch() {