From: Mario Date: Thu, 7 Mar 2013 00:41:30 +0000 (+1100) Subject: Move warning prints to dprints X-Git-Tag: xonotic-v0.8.0~241^2^2~472 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=3875314d0a0ab392fed496f0fcec7032f710b495;p=xonotic%2Fxonotic-data.pk3dir.git Move warning prints to dprints --- diff --git a/qcsrc/server/mutators/gamemode_td.qc b/qcsrc/server/mutators/gamemode_td.qc index f252001ec..2f962d799 100644 --- a/qcsrc/server/mutators/gamemode_td.qc +++ b/qcsrc/server/mutators/gamemode_td.qc @@ -163,7 +163,7 @@ void spawnfunc_monster_swarm() WaypointSprite_SpawnFixed("Monsters", self.origin + '0 0 60', self, sprite, RADARICON_HERE, '0 0 1'); if(self.target == "") - print("Warning: monster_swarm entity without a set target\n"); + dprint("Warning: monster_swarm entity without a set target\n"); } void barricade_touch() @@ -238,7 +238,7 @@ void spawnturret(entity spawnedby, entity own, string turet, vector orig) { if(spawnedby.classname != STR_PLAYER) { - print("Warning: A non-player entity tried to spawn a turret\n"); + dprint("Warning: A non-player entity tried to spawn a turret\n"); return; } @@ -319,7 +319,7 @@ void TD_SpawnMonster(string mnster, float strngth, float type) if(e == world) { - print("Warning: couldn't find any monster_swarm spawnpoints, no monsters will spawn!\n"); + dprint("Warning: couldn't find any monster_swarm spawnpoints, no monsters will spawn!\n"); return; }