2 Commits

Author SHA1 Message Date
Not
adbdbb8c03 do not transmit on first frame 2023-10-17 20:31:23 +02:00
Not
e833227b64 fix possible values for lb_ghost_trans_prox 2023-10-13 22:27:24 +02:00
2 changed files with 2 additions and 2 deletions

View File

@ -204,7 +204,7 @@ CV_RegisterVar({
name = "lb_ghost_trans_prox",
defaultvalue = 150,
flags = CV_CALL,
PossibleValue = CV_NATURAL,
PossibleValue = CV_Natural,
func = function(cv)
transProximity = cv.value
end

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]