Fix garrison header and use showMessage (#5628)

* Fix garrison header and use showMessage

* Fix moduleUngarrison
This commit is contained in:
PabstMirror 2017-10-16 15:23:39 -05:00 committed by GitHub
parent c08bea1275
commit 9c7b546e24
2 changed files with 3 additions and 3 deletions

View File

@ -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";
};

View File

@ -24,7 +24,7 @@ scopeName "Main";
private _fnc_errorAndClose = {
params ["_msg"];
deleteVehicle _logic;
[_msg] call EFUNC(common,displayTextStructured);
[_msg] call FUNC(showMessage);
breakOut "Main";
};