From 9c7b546e24bcd3fd6b5dcfffa4bcb586ef4bf606 Mon Sep 17 00:00:00 2001 From: PabstMirror Date: Mon, 16 Oct 2017 15:23:39 -0500 Subject: [PATCH] Fix garrison header and use showMessage (#5628) * Fix garrison header and use showMessage * Fix moduleUngarrison --- addons/zeus/functions/fnc_moduleGarrison.sqf | 4 ++-- addons/zeus/functions/fnc_moduleUnGarrison.sqf | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/addons/zeus/functions/fnc_moduleGarrison.sqf b/addons/zeus/functions/fnc_moduleGarrison.sqf index 9b8e2df0a2..2762102d0c 100644 --- a/addons/zeus/functions/fnc_moduleGarrison.sqf +++ b/addons/zeus/functions/fnc_moduleGarrison.sqf @@ -13,7 +13,7 @@ * None * * Example: - * [LOGIC, [2203.64, 2281.47, 1], 20, 2, true] call ace_zeus_fnc_moduleUngarrison + * [LOGIC, [2203.64, 2281.47, 1], 20, 2, true] call ace_zeus_fnc_moduleGarrison * * Public: No */ @@ -30,7 +30,7 @@ scopeName "Main"; private _fnc_errorAndClose = { params ["_msg"]; deleteVehicle _logic; - [_msg] call EFUNC(common,displayTextStructured); + [_msg] call FUNC(showMessage); breakOut "Main"; }; diff --git a/addons/zeus/functions/fnc_moduleUnGarrison.sqf b/addons/zeus/functions/fnc_moduleUnGarrison.sqf index e0c632cd3f..7c56462187 100644 --- a/addons/zeus/functions/fnc_moduleUnGarrison.sqf +++ b/addons/zeus/functions/fnc_moduleUnGarrison.sqf @@ -24,7 +24,7 @@ scopeName "Main"; private _fnc_errorAndClose = { params ["_msg"]; deleteVehicle _logic; - [_msg] call EFUNC(common,displayTextStructured); + [_msg] call FUNC(showMessage); breakOut "Main"; };