From: Rudolf Polzer Date: Fri, 28 Oct 2011 19:29:48 +0000 (+0200) Subject: more spam X-Git-Tag: xonotic-v0.6.0~35^2~79 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=commitdiff_plain;h=dd56dd9ab363f1f51eb9d8b348579ad8cd9d8bf4 more spam --- diff --git a/qcsrc/client/Main.qc b/qcsrc/client/Main.qc index 554c8a86ac..4e2be119ee 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; } }