From: Mario Date: Sat, 24 Jan 2015 10:42:24 +0000 (+1100) Subject: Fix some more things X-Git-Tag: xonotic-v0.8.1~133^2~42 X-Git-Url: http://de.git.xonotic.org/?a=commitdiff_plain;h=c37780e06690fc6576593ae40449822c0e3781d7;p=xonotic%2Fxonotic-data.pk3dir.git Fix some more things --- diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index 492e65ba8..9e240048f 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -1015,7 +1015,7 @@ void HUD_Ammo(void) ammo_size = eX * mySize_x*(1/columns) + eY * mySize_y*(1/rows); - local vector offset = '0 0 0'; // fteqcc sucks + vector offset = '0 0 0'; // fteqcc sucks float newSize; if(ammo_size_x/ammo_size_y > 3) { diff --git a/qcsrc/server/bot/havocbot/roles.qc b/qcsrc/server/bot/havocbot/roles.qc index 7e3ddbb43..c32161d90 100644 --- a/qcsrc/server/bot/havocbot/roles.qc +++ b/qcsrc/server/bot/havocbot/roles.qc @@ -153,7 +153,7 @@ void havocbot_goalrating_enemyplayers(float ratingscale, vector org, float sradi { entity head; float t, noteam, distance; - noteam = ((self.team == 0) || !teamplay); // fteqcc sucks + noteam = ((self.team == 0) || !teamplay); if (autocvar_bot_nofire) return;