This commit is contained in:
nullifiedcat 2016-12-23 09:27:41 +03:00
parent 8ea021482b
commit 13ab308957
2 changed files with 2 additions and 4 deletions

View File

@ -30,6 +30,8 @@
#define CON_NAME "cat"
#define CON_PREFIX CON_NAME "_"
#define DEG2RAD(x) (float)(x) * (PI / 180.0f)
#define DEBUG_SEGV true
#if DEBUG_SEGV == true

View File

@ -241,10 +241,6 @@ void FixMovement(CUserCmd& cmd, Vector& viewangles) {
cmd->sidemove = sin(yaw) * speed;*/
}
float deg2rad(float deg) {
return deg * (PI / 180);
}
bool IsPlayerInvisible(CachedEntity* player) {
int cond = CE_INT(player, netvar.iCond);
int mask = cloaked;