From 1085060421c52255320ca9a3ef7fa06a46b3b26e Mon Sep 17 00:00:00 2001 From: SirDice Date: Mon, 20 Nov 2017 21:31:53 +0100 Subject: [PATCH] Missed variable rename _showBoatMarkers was replaced with _showMarkers with commit bd3e331 but one was forgotten. --- .../compile/epoch_looting/EPOCH_server_spawnBoatLoot.sqf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/epoch_server/compile/epoch_looting/EPOCH_server_spawnBoatLoot.sqf b/Sources/epoch_server/compile/epoch_looting/EPOCH_server_spawnBoatLoot.sqf index 445d0717..a7aac746 100644 --- a/Sources/epoch_server/compile/epoch_looting/EPOCH_server_spawnBoatLoot.sqf +++ b/Sources/epoch_server/compile/epoch_looting/EPOCH_server_spawnBoatLoot.sqf @@ -78,11 +78,11 @@ if (getNumber(_cfgEpoch >> "shipwreckLootEnabled") isEqualTo 1) then { }; _rEvents = missionNameSpace getVariable["EPOCH_RunningEvents",[]]; - _thisEvent = [_position, [_item], [], "shipwreckCounter", diag_tickTime, 99999, _showBoatMarkers, _markers, _originalColors, _decayMarkerColor, _compromisedColor]; + _thisEvent = [_position, [_item], [], "shipwreckCounter", diag_tickTime, 99999, _showMarkers, _markers, _originalColors, _decayMarkerColor, _compromisedColor]; missionNameSpace setVariable["EPOCH_RunningEvents",_rEvents + [_thisEvent]]; }; }; if(_debug)then{ diag_log format["EPOCHDebug: Safely spawned %1 loot container(s) at these shipwreck locations:%2",count _spawnedLoot , _spawnedLoot]; }; -}; \ No newline at end of file +};