You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Comment should be changed to seconds instead of minutes
Reproduction
In qbx_ambulancejob > config > client.lua "painkillerInterval" says "Time in minutes that painkillers last for", but when tracing painkillerInterval it goes to a function inside client > wounding.lua that does
local function consumePainKiller() painkillerAmount -= 1 Wait(config.painkillerInterval * 1000) if painkillerAmount > 0 then return end painkillerAmount = 0 OnPainKillers = false exports.qbx_medical:EnableDamageEffects() end
The function has it in seconds and not minutes.
Expected behavior
Should be changed to seconds instead of minutes.
Actual behavior
It says minutes.
Additional context
No response
Current Version
V1
Custom Resources
N/A
The text was updated successfully, but these errors were encountered:
Summary
Comment should be changed to seconds instead of minutes
Reproduction
In qbx_ambulancejob > config > client.lua "painkillerInterval" says "Time in minutes that painkillers last for", but when tracing painkillerInterval it goes to a function inside client > wounding.lua that does
local function consumePainKiller() painkillerAmount -= 1 Wait(config.painkillerInterval * 1000) if painkillerAmount > 0 then return end painkillerAmount = 0 OnPainKillers = false exports.qbx_medical:EnableDamageEffects() end
The function has it in seconds and not minutes.
Expected behavior
Should be changed to seconds instead of minutes.
Actual behavior
It says minutes.
Additional context
No response
Current Version
V1
Custom Resources
N/A
The text was updated successfully, but these errors were encountered: