Dragging - Add logging for claimSafe failure (#9739)

This commit is contained in:
PabstMirror 2024-01-16 09:16:51 -06:00 committed by GitHub
parent 9eb7e83e59
commit edf627ce51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@
params ["_unit", "_target", "_claimed"]; params ["_unit", "_target", "_claimed"];
TRACE_3("params",_unit,_target,_claimed); TRACE_3("params",_unit,_target,_claimed);
if (!_claimed) exitWith {}; if (!_claimed) exitWith { WARNING_1("already claimed %1",_this) };
// Exempt from weight check if object has override variable set // Exempt from weight check if object has override variable set
private _weight = 0; private _weight = 0;

View File

@ -20,7 +20,7 @@
params ["_unit", "_target", "_claimed"]; params ["_unit", "_target", "_claimed"];
TRACE_3("params",_unit,_target,_claimed); TRACE_3("params",_unit,_target,_claimed);
if (!_claimed) exitWith {}; if (!_claimed) exitWith { WARNING_1("already claimed %1",_this) };
// Exempt from weight check if object has override variable set // Exempt from weight check if object has override variable set
private _weight = 0; private _weight = 0;