From dd56dd9ab363f1f51eb9d8b348579ad8cd9d8bf4 Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Fri, 28 Oct 2011 21:29:48 +0200 Subject: [PATCH] more spam --- qcsrc/client/Main.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/client/Main.qc b/qcsrc/client/Main.qc index 554c8a86a..4e2be119e 100644 --- a/qcsrc/client/Main.qc +++ b/qcsrc/client/Main.qc @@ -968,7 +968,7 @@ void CSQC_Ent_Update(float bIsNewEntity) if(t != self.enttype || bIsNewEntity) { //print(_("A CSQC entity changed its type!\n")); - print(sprintf(_("A CSQC entity changed its type! (edict: %d, type: %d -> %d)\n"), num_for_edict(self), self.enttype, t)); + print(sprintf(_("A CSQC entity changed its type! (edict: %d, server: %d, type: %d -> %d)\n"), num_for_edict(self), self.entnum, self.enttype, t)); Ent_Remove(); bIsNewEntity = 1; } @@ -977,7 +977,7 @@ void CSQC_Ent_Update(float bIsNewEntity) { if(!bIsNewEntity) { - print(sprintf(_("A CSQC entity appeared out of nowhere! (edict: %d, type: %d)\n"), num_for_edict(self), t)); + print(sprintf(_("A CSQC entity appeared out of nowhere! (edict: %d, server: %d, type: %d)\n"), num_for_edict(self), self.entnum, t)); bIsNewEntity = 1; } } -- 2.39.2