diff --git a/Sources/epoch_code/compile/looting/EPOCH_spawnLoot.sqf b/Sources/epoch_code/compile/looting/EPOCH_spawnLoot.sqf index 095d7031..d729f23e 100644 --- a/Sources/epoch_code/compile/looting/EPOCH_spawnLoot.sqf +++ b/Sources/epoch_code/compile/looting/EPOCH_spawnLoot.sqf @@ -37,6 +37,8 @@ if (_selectedConfig isEqualTo "") then { }; }; +diag_log format["DEBUG: _selectedConfig %1",_selectedConfig]; + _masterConfig = 'CfgBuildingLootPos' call EPOCH_returnConfig; _config = _masterConfig >> _selectedConfig; _cfgBaseBuilding = 'CfgBaseBuilding' call EPOCH_returnConfig; diff --git a/Sources/epoch_code/compile/setup/masterLoop/init.sqf b/Sources/epoch_code/compile/setup/masterLoop/init.sqf index 3dc12b5d..2a274a97 100644 --- a/Sources/epoch_code/compile/setup/masterLoop/init.sqf +++ b/Sources/epoch_code/compile/setup/masterLoop/init.sqf @@ -206,6 +206,7 @@ _lootBubble = { _lootDist = 30 + _distanceTraveled; _lootLoc = player getRelPos [_lootDist, (random [-180,0,180])]; _objects = (_lootLoc nearObjects 30) select {((toLower (typeof _x)) in _lootClasses)}; + diag_log format["DEBUG: loot objects %1",_objects]; _jammer = nearestObjects [_lootLoc, ["PlotPole_EPOCH","ProtectionZone_Invisible_F"], _buildingJammerRange]; if (!(_objects isEqualTo[]) && (_jammer isEqualTo[])) then { _building = selectRandom _objects;