mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
Cover map bug at Polana factory pond
Vanilla development commits:bd9ec53854028490e21b
This commit is contained in:
@@ -153,5 +153,6 @@
|
||||
["UralWreck",[11345.4,6646.88,0.334831],285.033,0],
|
||||
["SKODAWreck",[11340.8,6655.04,0.334831],225.033,0],
|
||||
["LADAWreck",[11325,6637.85,0.234833],160.033,0],
|
||||
["Misc_TyreHeap",[11308.6,6640.9,0.0248337],170.033,0]
|
||||
["Misc_TyreHeap",[11308.6,6640.9,0.0248337],170.033,0],
|
||||
["Fort_Barricade_EP1",[11459.571,7390.7227,-0.040615425],225.14645,0]
|
||||
];
|
||||
|
||||
@@ -1,21 +1,20 @@
|
||||
//diag_log [ diag_tickTime, __FILE__, "Sp4wing security concrete blocks"];
|
||||
poi_processObject = {
|
||||
private ["_type","_pos","_dir","_elevation","_tilt","_o"];
|
||||
_type = _this select 0;
|
||||
_pos = _this select 1;
|
||||
_dir = _this select 2;
|
||||
_elevation = _this select 3;
|
||||
_tilt = _this select 4;
|
||||
|
||||
_o = _type createVehicleLocal _pos;
|
||||
_o setDir _dir;
|
||||
_o setPosATL _pos;
|
||||
//_o setPosATL [ _pos select 0, _pos select 1, _elevation ];
|
||||
//if (!isNil "_tilt") then { _o setvectordirandup _tilt; /*diag_log [ _tilt, vectorDir _o, vectorUp _o];*/ };
|
||||
|
||||
_o setVariable ["", true]; // prevent network SV by loot/zeds spawner
|
||||
};
|
||||
|
||||
if (toLower worldName == "chernarus") then {
|
||||
_base = "\z\addons\dayz_code\system\mission\chernarus\security\";
|
||||
call compile preprocessFileLineNumbers (_base+"antiwallhack.sqf");
|
||||
call compile preprocessFileLineNumbers ("\z\addons\dayz_code\system\mission\chernarus\security\antiwallhack.sqf");
|
||||
};
|
||||
//diag_log [ diag_tickTime, __FILE__, "Done security"];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user