do not transmit on first frame

This commit is contained in:
Not 2023-10-17 20:31:23 +02:00
parent e833227b64
commit adbdbb8c03
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ end
rawset(_G, "lb_transmitter", Transmitter)
addHook("ThinkFrame", function()
if not #transmitters then return end
if not (#transmitters and leveltime) then return end
local index = (leveltime % #transmitters) + 1
local transmitter = transmitters[index]