-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -575,7 +575,7 @@ RegisterNetEvent('seatbelt:client:ToggleCruise', function() -- Triggered in smal | |
cruiseOn = not cruiseOn | ||
end) | ||
|
||
RegisterNetEvent('hud:client:UpdateNitrous', function(_, nitroLevel, bool) | ||
RegisterNetEvent('hud:client:UpdateNitrous', function(nitroLevel, bool) | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
Qwerty1Verified
|
||
nos = nitroLevel | ||
nitroActive = bool | ||
end) | ||
|
If this has worked before just fine, then you broke it now. Whatever the first argument was, now it's going to be considered as
nitroLevel
, which isn't the actual nitro level. Arguments that are unused in a function should be replaced with a_
, which will make the warning disappear.