From bb01d90c3a01b7974e27c24073d407c303e88b97 Mon Sep 17 00:00:00 2001 From: Weaver Goldman Date: Thu, 13 Jul 2023 18:34:22 -0400 Subject: [PATCH] Hotfix for broken demo. --- main.js | 3 --- package.json | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/main.js b/main.js index 9995cf5..87a99c5 100644 --- a/main.js +++ b/main.js @@ -13,7 +13,6 @@ import { deserializeStringToRaw, fillWallsWithCells, solveDStarLite, - structures, } from "./lib" import { East, North, South, West, cellIs, removeWall } from "./lib/helpers" @@ -116,8 +115,6 @@ document.addEventListener("DOMContentLoaded", () => { console.log(`Render: ${endTime - startTime}ms`) - console.log(structures) - // Render the updated d star path const canvas2 = document.getElementById("demo-canvas-2") const ctx2 = canvas2.getContext("2d") diff --git a/package.json b/package.json index 4d2ae2e..931bbc6 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "algernon-js", "author": "Weaver Goldman ", "description": "Algernon is a JS library for efficiently generating, solving, and rendering mazes.", - "version": "0.2.3", + "version": "0.2.4", "type": "module", "license": "MIT", "repository": {