Skip to content
New issue

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

Let whitelisted UIDs save server settings #978

Merged
merged 2 commits into from
Sep 13, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion addons/settings/fnc_set.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ switch (toLower _source) do {

[QGVAR(refreshSetting), _setting] call CBA_fnc_globalEvent;
} else {
if (IS_ADMIN_LOGGED) then {
if (FUNC(whitelisted)) then {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it should be:

if (call FUNC(whitelisted)) then {

, because if CODE doesn't work.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Woops, you're right. I copied the change from the original PR https://github.com/CBATeam/CBA_A3/pull/892/files#diff-7dae6d56b20dafd78a576ce4a08a7dcaR96

[QGVAR(setSettingServer), [_setting, _value, _priority, _store]] call CBA_fnc_serverEvent;
} else {
WARNING_1("Source is server, but no admin access. Setting: %1",_setting);
Expand Down