Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
armazac committed Jun 8, 2019
2 parents 68e651a + 481673b commit c5fba79
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Binary file modified addons/overthrow_main.pbo
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@ if !(_pos isEqualType []) then {
_dir = [_frompos,_ao] call BIS_fnc_dirTo;
};
_pos set [2,1];
_veh = _vehtype createVehicle _pos;
_veh = createVehicle [_vehtype, [0,0,1000+random 1000], [], 0, "CAN_COLLIDE"];
_veh setDir (_dir);
_veh setPosATL _pos;
_veh setVariable ["garrison","HQ",false];
clearWeaponCargoGlobal _veh;
clearMagazineCargoGlobal _veh;
Expand Down
2 changes: 1 addition & 1 deletion addons/overthrow_main/functions/save/fn_loadGame.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ sleep 0.3;
_name = _x select 5;
};
private _p = _pos;
_veh = createVehicle [_type, [0,0,0], [], 0, "CAN_COLLIDE"];
_veh = createVehicle [_type, [0,0,1000], [], 0, "CAN_COLLIDE"];
_veh enableDynamicSimulation true;
/*
if !(_simulation) then {
Expand Down

0 comments on commit c5fba79

Please sign in to comment.