https://github.com/26F-Studio/Techmino/blob/main/parts/eventsets/attacker_h.lua
--snip--
if D.wave==50 then -- line 14
P:win('finish')
else
-- Here, D.wave can never be 50
--snip--
if D.wave==20 then
--snip--
elseif D.wave==50 then --! Unreachable branch on line 32: This will never be true
P:_showText(text.maxspeed,0,-140,100,'appear',.6)
end
end
--snip--
Shouldn't be too hard to fix but I'm kinda in the middle of something atm.
https://github.com/26F-Studio/Techmino/blob/main/parts/eventsets/attacker_h.lua
Shouldn't be too hard to fix but I'm kinda in the middle of something atm.