mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
fix lexer warning
This commit is contained in:
parent
faf82b97b2
commit
cf2244d3b3
@ -17,7 +17,7 @@ private ["_array","_center","_class","_cloneClasses","_config","_configWorld","_
|
|||||||
//[[[end]]]
|
//[[[end]]]
|
||||||
_loadBaseTemplateConfig = {
|
_loadBaseTemplateConfig = {
|
||||||
private ["_partPos","_part","_array","_center","_deSimulate"];
|
private ["_partPos","_part","_array","_center","_deSimulate"];
|
||||||
params ["_templateClass","_selectedTemplate","_pos"];
|
params ["_templateClass","_selectedTemplate","_pos","_class"];
|
||||||
_array = getArray(configfile >> "CfgPropTemplate" >> _selectedTemplate);
|
_array = getArray(configfile >> "CfgPropTemplate" >> _selectedTemplate);
|
||||||
_pos set [2,0];
|
_pos set [2,0];
|
||||||
_center = createVehicle [_templateClass, _pos, [], 0, "CAN_COLLIDE"];
|
_center = createVehicle [_templateClass, _pos, [], 0, "CAN_COLLIDE"];
|
||||||
@ -138,7 +138,7 @@ if !(_debugBox isEqualTo "") then {
|
|||||||
if (_pos isEqualType "") then {
|
if (_pos isEqualType "") then {
|
||||||
_markerName = _pos;
|
_markerName = _pos;
|
||||||
_pos = getMarkerPos _markerName;
|
_pos = getMarkerPos _markerName;
|
||||||
["ProtectionZone_Invisible_F",_markerName,_pos] call _loadBaseTemplateConfig;
|
["ProtectionZone_Invisible_F",_markerName,_pos,_class] call _loadBaseTemplateConfig;
|
||||||
} else {
|
} else {
|
||||||
_pro2 = createVehicle ["ProtectionZone_Invisible_F", _pos, [], 0, "CAN_COLLIDE"];
|
_pro2 = createVehicle ["ProtectionZone_Invisible_F", _pos, [], 0, "CAN_COLLIDE"];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user