From: Mario Date: Mon, 13 Feb 2017 01:49:45 +0000 (+1000) Subject: Convert medkit to mega armor (being a holdable means it's supposed to last, unlike... X-Git-Tag: xonotic-v0.8.2~218 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=04ce2fa6e2d144f70d14a5fdc8bebff621d5129f;p=xonotic%2Fxonotic-data.pk3dir.git Convert medkit to mega armor (being a holdable means it's supposed to last, unlike health and medic buffs) --- diff --git a/qcsrc/server/compat/quake3.qc b/qcsrc/server/compat/quake3.qc index e5cff0b9f..02bd04d5d 100644 --- a/qcsrc/server/compat/quake3.qc +++ b/qcsrc/server/compat/quake3.qc @@ -64,6 +64,9 @@ spawnfunc(item_armor_combat) { spawnfunc_item_armor_big(this); } spawnfunc(item_armor_shard) { spawnfunc_item_armor_small(this); } spawnfunc(item_enviro) { spawnfunc_item_invincible(this); } +// medkit -> armor (we have no holdables) +spawnfunc(holdable_medkit) { spawnfunc_item_armor_mega(this); } + .float wait; .float delay;