From 995f96d8af37320da58733aeb4b2107af25ab668 Mon Sep 17 00:00:00 2001 From: Chris Bradley <1029chris@gmail.com> Date: Sun, 20 Feb 2022 15:51:09 -0800 Subject: Turns out "\" is division + floor, thats cool! Saved a little tokens implementing it all over --- waves.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'waves.lua') diff --git a/waves.lua b/waves.lua index 720b58f..60d7252 100644 --- a/waves.lua +++ b/waves.lua @@ -208,7 +208,7 @@ wave[15] = { delay = 0, start = function() for i = 1, 6, 1 do - addtargetingenemy(128, i*16-14+flr(i/4)*36, 0.05) + addtargetingenemy(128, i*16-14+i\4*36, 0.05) end addbomb(140,46, 1) end -- cgit