X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Ft_items.qh;h=13cc3796fe1a0539a3bd779e0efec7971f21cdfb;hb=fbf95bc8847bd149f4e70b4e96b8ce4bd203005f;hp=b073dfafbf58387fbf1c102e571c8a6c54479780;hpb=a5b077eb799e456094034cdc0dd0d5b5a7e1119e;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/t_items.qh b/qcsrc/server/t_items.qh index b073dfafb..13cc3796f 100644 --- a/qcsrc/server/t_items.qh +++ b/qcsrc/server/t_items.qh @@ -16,6 +16,7 @@ const float IT_SUPERWEAPON = 4096; const float IT_STRENGTH = 8192; const float IT_INVINCIBLE = 16384; const float IT_HEALTH = 32768; +const float IT_PLASMA = 65536; // shared value space (union): // for items: @@ -36,7 +37,7 @@ const float IT_ARMOR_SHARD = 2097152; const float IT_ARMOR = 4194304; // item masks -const float IT_AMMO = 3968; // IT_FUEL | IT_SHELLS | IT_NAILS | IT_ROCKETS | IT_CELLS; +const float IT_AMMO = 3968; // IT_FUEL | IT_SHELLS | IT_NAILS | IT_ROCKETS | IT_CELLS | IT_PLASMA; const float IT_PICKUPMASK = 51; // IT_FUEL_REGEN | IT_JETPACK | IT_UNLIMITED_AMMO; // strength and invincible are handled separately const float IT_UNLIMITED_AMMO = 3; // IT_UNLIMITED_SUPERWEAPONS | IT_UNLIMITED_WEAPON_AMMO;