Skip to content

Commit

Permalink
Merge pull request #167 from ColinM9991/bugfix/6.5.0-cleanup
Browse files Browse the repository at this point in the history
Post-release bugfixes
  • Loading branch information
Fusselwurm authored Aug 3, 2022
2 parents c49498c + ea7c9c4 commit 47f3a92
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion addons/cars/functions/fnc_setVehicles.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ params [

assert(_value isEqualTypeAll "");

[QGVAR(vehicles), str _value, 1, "mission"] call CBA_settings_fnc_set;
[QGVAR(vehicles), str _value, 1, "server", true] call CBA_settings_fnc_set;
2 changes: 1 addition & 1 deletion addons/lifecycle/functions/fnc_setCivilians.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ params [

assert(_value isEqualTypeAll "");

[QGVAR(civClasses), str _value, 1, "mission"] call CBA_settings_fnc_set;
[QGVAR(civClasses), str _value, 1, "server", true] call CBA_settings_fnc_set;
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
private _isSleepingTime = _this call EFUNC(activities,isSleepingTime);

private _house = _this getVariable ["grad_civs_home", objNull];
_this setVariable [QGVAR(housework_time), random if (_isSleepingTime) then {GVAR(houseworkTimesNight)} else {GVAR(houseworkTimesDay)}];
_this setVariable [QGVAR(housework_time), random (if (_isSleepingTime) then [{GVAR(houseworkTimesNight)},{GVAR(houseworkTimesDay)}])];
_this call EFUNC(activities,forceEmotionSpeed);

if (isNull _house) exitWith {
Expand Down

0 comments on commit 47f3a92

Please sign in to comment.