Disabled Debug Message

This commit is contained in:
mrpvtdagger 2021-03-04 22:12:31 -04:00
parent 6753810cfa
commit cf42970fa8

View File

@ -62,7 +62,7 @@ if (isClass(configFile >> "CfgWeapons" >> "ACE_Fortify")) then
_x addEventHandler ["CuratorObjectPlaced", {
params ["_curator", "_entity"];
if ((_entity isKindOf "Tank")||(_entity isKindOf "Air")||(_entity isKindOf "Logic")||(_entity isKindOf "Man")||(_entity isKindOf "House")) then {
hint "Object is blacklisted";
//hint "Object is blacklisted";
} else {
_action = [
"SlingLoad", // Action Name
@ -75,7 +75,7 @@ if (isClass(configFile >> "CfgWeapons" >> "ACE_Fortify")) then
[0,0,0], 100] call ace_interact_menu_fnc_createAction;
[_entity, 0, ["ACE_MainActions"], _action] call ace_interact_menu_fnc_addActionToObject;
hint format["Object spawned: %1", _entity];
//hint format["Object spawned: %1", _entity];
};
}];
} forEach allCurators;