Removed unused Building Vars

This commit is contained in:
He-Man 2018-05-05 18:05:20 +02:00
parent 14587e6c4e
commit d1793b239c
2 changed files with 13 additions and 14 deletions

View File

@ -143,8 +143,18 @@ for "_i" from 0 to _this do {
};
// Handle Jammers and create marker if EPOCH_SHOW_JAMMERS set true.
if (_class isKindOf "PlotPole_EPOCH") then {
if (EPOCH_SHOW_JAMMERS) then {
if (_class in ["PlotPole_EPOCH","BaseCam_EPOCH"]) then {
if (_owner != "-1") then {
_baseObj setVariable ["BUILD_OWNER", _owner, true];
};
// add BaseCam to public array
if (_class isequalto "BaseCam_EPOCH") then {
EPOCH_BaseCams pushBackUnique _baseObj;
// Set PubVar later after all Cams are loaded in
};
if (_class isequalto "PlotPole_EPOCH" && EPOCH_SHOW_JAMMERS) then {
_marker = createMarker [str(_location), _location];
_marker setMarkerShape "ICON";
// TODO allow players to change this per base
@ -160,16 +170,6 @@ for "_i" from 0 to _this do {
};
_baseObj setVariable ["BUILD_SLOT", _i, true];
if (_owner != "-1") then {
_baseObj setVariable ["BUILD_OWNER", _owner, true];
};
// add BaseCam to public array
if (_class isequalto "BaseCam_EPOCH") then {
EPOCH_BaseCams pushBackUnique _baseObj;
// Set PubVar later after all Cams are loaded in
};
if (_textureSlot != 0) then {
// get texture path from index
_color = getArray (_cfgBaseBuilding >> _class >> "availableTextures");

View File

@ -134,13 +134,12 @@ for "_i" from 1 to _maxStorageLimit do {
};
if (count _arr >= 6) then {
_vehicle setVariable ["STORAGE_OWNERS", _arr select 5];
if (_class isKindOf 'Constructions_lockedstatic_F') then{
// set locked state of secure storage
if ((_arr select 6) != -1) then {
_vehicle setVariable["EPOCH_Locked", true, true];
//_vehicle enableSimulationGlobal false;
};
_vehicle setVariable ["STORAGE_OWNERS", _arr select 5];
};
};