Fix some performance issues

This commit is contained in:
Bill Niblock 2024-11-06 22:13:47 -05:00
parent d778b863ac
commit 72029078b7
4 changed files with 3 additions and 53 deletions

View file

@ -14,7 +14,7 @@
; The Map table holds the map meta-data
; [n] number of cells
; [h w] hall and wall widths
(var map {:n 10 :h 2 :w 2})
(var map {:n 10 :h 3 :w 4})
{:getSeed (fn getSeed [] game.seed)
:setSeed (fn setSeed [x] (set game.seed x))