if(!_Movetype_TestEntityPosition(this, '0 0 -1' * i)) goto success;
if(!_Movetype_TestEntityPosition(this, '0 0 1' * i)) goto success;
}
- LOG_TRACEF("Can't unstick an entity (edict: %d, classname: %s, origin: %s)\n",
+ LOG_DEBUG("Can't unstick an entity (edict: %d, classname: %s, origin: %s)\n",
num_for_edict(this), this.classname, vtos(this.move_origin));
return false;
: success;
- LOG_TRACEF("Sucessfully unstuck an entity (edict: %d, classname: %s, origin: %s)\n",
+ LOG_DEBUG("Sucessfully unstuck an entity (edict: %d, classname: %s, origin: %s)\n",
num_for_edict(this), this.classname, vtos(this.move_origin));
_Movetype_LinkEdict(this, true);
return true;