Replaced _currentshooter by _this

Fixes script error `Error Undefined variable in expression: _currentshooter`
This commit is contained in:
Glowbal 2015-04-24 20:03:04 +02:00
parent 9e33b7a32e
commit 7dc8a08b89

View File

@ -130,7 +130,7 @@ FUNC(disableFire) = {
if(_firedEH < 0 && difficulty > 0) then {
_firedEH = [ACE_player, "DefaultAction", {true}, {
_canFire = _currentShooter getVariable["ace_missileguidance_target", nil];
_canFire = _this getVariable["ace_missileguidance_target", nil];
if(!isNil "_canFire") exitWith { false };
true
}] call EFUNC(common,addActionEventHandler);
@ -289,4 +289,4 @@ _args set[3, _lockTime];
_args set[4, _soundTime];
_args set[6, _fireDisabledEH];
uiNamespace setVariable[QGVAR(arguments), _args ];
uiNamespace setVariable[QGVAR(arguments), _args ];