Removed logging

This commit is contained in:
Chris Cardozo 2020-10-03 08:05:56 -04:00
parent 37a370bea7
commit 93f71b0779
2 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ if (toLower(blck_modType) isEqualTo "default") exitWith {};
params["_obj",["_money",-1]];
_money = ([_money] call blck_fnc_getNumberFromRange);
if (blck_debugLevel >= 3) then {[format["_fnc_addmoneyToObject: _money = %1 _obj = %2",_money,_obj]] call blck_fnc_log};
//if (blck_debugLevel >= 3) then {[format["_fnc_addmoneyToObject: _money = %1 _obj = %2",_money,_obj]] call blck_fnc_log};
if !(_money <= 0) then
{
switch(toLower(blck_modType)) do

View File

@ -12,11 +12,11 @@ for "_i" from 1 to (count blck_temporaryMarkers) do
{
if (_i > (count blck_temporaryMarkers)) exitWith {};
private _m = blck_temporaryMarkers deleteAt 0;
_m params["_marker","_deleteAt"];
_m params[["_marker",""],["_deleteAt",0]];
if (diag_tickTime > _deleteAt) then
{
deleteMarker _marker;
} else {
blck_temporaryMarkers pushBack _m;
};
};
};