File tree Expand file tree Collapse file tree 4 files changed +5
-6
lines changed
Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 1- 4
1+ 5
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ class Mission
2525 randomSeed=4656359;
2626 class Intel
2727 {
28- briefingName="CO14 Apple Core v5 ";
28+ briefingName="CO14 Apple Core v6 ";
2929 briefingDescription="Core Framework Showcase Mission";
3030 startWeather=0.39999998;
3131 forecastWeather=0.25;
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ class gear
33{
44 name = " Gear Module" ;
55 authors[] = {" Naught" };
6- version = 2 ;
6+ version = 4 ;
77 required_version = 1 ;
88 url = " https://github.com/unitedoperations/Core-framework" ;
99 preinit = " preinit.sqf" ;
Original file line number Diff line number Diff line change @@ -32,9 +32,8 @@ gear_fnc_setLoadout = {
3232 private [" _obj" ];
3333 _obj = _this select 0 ;
3434
35- if (! isDedicated) then {
36- waitUntil {! isNull player };
37- };
35+ if (isMultiplayer && isDedicated && {isPlayer _obj }) exitWith {}; // Servers don't load player gear!
36+ if (! isDedicated) then {waitUntil {! isNull player }}; // Clients must wait for server unit hand-over.
3837
3938 if (local _obj ) then {
4039 if (_obj isKindOf " Man" ) then {
You can’t perform that action at this time.
0 commit comments