mirror of
https://github.com/fortressforever/fortressforever-scripts.git
synced 2024-11-10 15:22:07 +00:00
Use SECURITY_LENGTH instead of SECURITY_LENGTH+1
This commit is contained in:
parent
ee2e31bece
commit
18e497f053
1 changed files with 2 additions and 2 deletions
|
@ -56,9 +56,9 @@ function security_off( team )
|
|||
|
||||
-- add a timer for the security on HUD
|
||||
if team == "red" then
|
||||
AddHudTimerToAll( "red_sec_timer", SECURITY_LENGTH + 1, -1, button_red.iconx, button_red.icony + 15, button_red.iconalign )
|
||||
AddHudTimerToAll( "red_sec_timer", SECURITY_LENGTH, -1, button_red.iconx, button_red.icony + 15, button_red.iconalign )
|
||||
else
|
||||
AddHudTimerToAll( "blue_sec_timer", SECURITY_LENGTH + 1, -1, button_blue.iconx, button_blue.icony + 15, button_blue.iconalign )
|
||||
AddHudTimerToAll( "blue_sec_timer", SECURITY_LENGTH, -1, button_blue.iconx, button_blue.icony + 15, button_blue.iconalign )
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue