Make attach/detach hint look uniform (#5900)

Add space at the bottom of hint to make it look nicer
This commit is contained in:
mharis001 2017-12-16 10:20:43 -05:00 committed by jonpas
parent 0eccca6174
commit 5371fb9eef
3 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,7 @@ if (_unit == _attachToVehicle) then { //Self Attachment
_attachedItem attachTo [_unit, [0.05, -0.09, 0.1], "leftshoulder"];
if (!_silentScripted) then {
_unit removeItem _itemClassname; // Remove item
[_onAttachText] call EFUNC(common,displayTextStructured);
[_onAttachText, 2] call EFUNC(common,displayTextStructured);
};
_unit setVariable [QGVAR(attached), [[_attachedItem, _itemClassname]], true];
} else {

View File

@ -83,4 +83,4 @@ if (_itemDisplayName == "") then {
_itemDisplayName = getText (configFile >> "CfgMagazines" >> _itemName >> "displayName");
};
[format [localize LSTRING(Item_Detached), _itemDisplayName]] call EFUNC(common,displayTextStructured);
[format [localize LSTRING(Item_Detached), _itemDisplayName], 2] call EFUNC(common,displayTextStructured);

View File

@ -101,4 +101,4 @@ private _attachList = _attachToVehicle getVariable [QGVAR(attached), []];
_attachList pushBack [_attachedObject, _itemClassname];
_attachToVehicle setVariable [QGVAR(attached), _attachList, true];
[_onAttachText] call EFUNC(common,displayTextStructured);
[_onAttachText, 2] call EFUNC(common,displayTextStructured);