We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
params
fnc_throttledPublicVariable.sqf
Hi guys and thank you for this great mod.
In ACE3-3.9.1, common/functions/fnc_throttledPublicVariable.sqf, line 30, we read
ACE3-3.9.1
common/functions/fnc_throttledPublicVariable.sqf
_x params [_unit, _varName];
I believe it should read
_x params ["_unit", "_varName"];
since the signature of the right hand side of params is [STRING,STRING,...].
[STRING,STRING,...]
This was found while I was testing the SQF parser in the ACE base code.
The text was updated successfully, but these errors were encountered:
fix script error in ACE_common_fnc_throttledPublicVariable, fix #5160
3e1fad8
PabstMirror
Successfully merging a pull request may close this issue.
Hi guys and thank you for this great mod.
In
ACE3-3.9.1
,common/functions/fnc_throttledPublicVariable.sqf
, line 30, we readI believe it should read
since the signature of the right hand side of
params
is[STRING,STRING,...]
.This was found while I was testing the SQF parser in the ACE base code.
The text was updated successfully, but these errors were encountered: