aboutsummaryrefslogtreecommitdiff
path: root/src/utils.lua
diff options
context:
space:
mode:
authoriamcheeseman <[email protected]>2026-03-12 15:34:21 -0400
committeriamcheeseman <[email protected]>2026-03-12 15:34:21 -0400
commita73cc7bc2fb11f7099a59eafc73e2161bf807a84 (patch)
tree5da51390d59b5e3df80b648783fc1dea4483a192 /src/utils.lua
parentbea27cd7f979ce3544b4c73855190efc2a9565ac (diff)
fix silly lil bug causing mener to cry
Diffstat (limited to 'src/utils.lua')
-rw-r--r--src/utils.lua6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/utils.lua b/src/utils.lua
index 33ca7e8..ec5d16e 100644
--- a/src/utils.lua
+++ b/src/utils.lua
@@ -18,12 +18,6 @@ function min(a, b)
return b
end
-function pop(tbl)
- local last = tbl[#tbl]
- tbl[#tbl] = nil
- return last
-end
-
function normalize(x, y)
if x == 0 and y == 0 then
return 0, 0