ACE3/addons/trenches/functions/fnc_handlePlayerInventoryChanged.sqf

26 lines
490 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
/*
* Author: commy2
* Handle the InventoryChanged event.
*
* Arguments:
* 0: Unit <OBJECT>
* 1: Weapon <STRING>
*
* Return Value:
* None
*
* Example:
* [bob, "weapon"] call ace_trenches_fnc_handlePlayerInventoryChanged
*
* Public: No
*/
params ["_unit"];
2016-02-04 20:42:12 +00:00
if (_unit getVariable [QGVAR(isPlacing), false]) then {
if !("ACE_EntrenchingTool" in (_unit call EFUNC(common,uniqueItems))) then {
2016-02-04 20:42:12 +00:00
[_unit] call FUNC(placeCancel);
};
};