From 0b68282554f244da5d652939bf188892a3fd916d Mon Sep 17 00:00:00 2001 From: div0 Date: Mon, 25 Jan 2010 17:13:32 +0000 Subject: [PATCH] more give ALL changes :P git-svn-id: svn://svn.icculus.org/nexuiz/trunk@8571 f962a42d-fe04-0410-a3ab-8c8b0445ebaa --- data/qcsrc/server/t_items.qc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/data/qcsrc/server/t_items.qc b/data/qcsrc/server/t_items.qc index 92e8f28df..b8980e6ee 100644 --- a/data/qcsrc/server/t_items.qc +++ b/data/qcsrc/server/t_items.qc @@ -1657,8 +1657,9 @@ float GiveItems(entity e, float beginarg, float endarg) got += GiveBit(e, items, IT_FUEL_REGEN, op, val, "misc/itempickup.wav", string_null); got += GiveValue(e, strength_finished, op, time + val, "misc/powerup.wav", "misc/poweroff.wav"); got += GiveValue(e, invincible_finished, op, time + val, "misc/powerup_shield.wav", "misc/poweroff.wav"); + got += GiveBit(e, items, IT_UNLIMITED_AMMO, op, val, "misc/powerup.wav", "misc/poweroff.wav"); case "all": - got += GiveBit(e, items, IT_UNLIMITED_AMMO | IT_JETPACK, op, val, "misc/powerup.wav", "misc/poweroff.wav"); + got += GiveBit(e, items, IT_JETPACK, op, val, "misc/powerup.wav", "misc/poweroff.wav"); got += GiveValue(e, ammo_cells, op, val, "misc/itempickup.wav", string_null); got += GiveValue(e, ammo_shells, op, val, "misc/itempickup.wav", string_null); got += GiveValue(e, ammo_nails, op, val, "misc/itempickup.wav", string_null); -- 2.39.2