From e77fcec023a6229a8b4403fcb3c96b55a6d51c0d Mon Sep 17 00:00:00 2001 From: Raymix Date: Wed, 25 Oct 2017 21:57:29 +0100 Subject: [PATCH] add message_stack to consume items script --- Sources/epoch_code/compile/EPOCH_consumeItem.sqf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/epoch_code/compile/EPOCH_consumeItem.sqf b/Sources/epoch_code/compile/EPOCH_consumeItem.sqf index 830aa1f9..abfe3205 100644 --- a/Sources/epoch_code/compile/EPOCH_consumeItem.sqf +++ b/Sources/epoch_code/compile/EPOCH_consumeItem.sqf @@ -50,7 +50,7 @@ _unifiedInteract = { { _output = _x call EPOCH_giveAttributes; if (_output != "") then { - [_output, 5] call Epoch_message; + [_output, 5] call Epoch_message_stack; }; } foreach _interactAttributes; }; @@ -372,7 +372,7 @@ switch _interactOption do { _msg = getArray(missionConfigFile >> "CfgReadingDocuments" >> _item >> "displayMessage"); if!(_msg isEqualTo [])then{ { - [_x,5] call Epoch_message; + [_x,5] call Epoch_message_stack; }forEach _msg; }else{ ["This document can't be read yet. Blame DirtySanchez!",5] call Epoch_message;