Change satchel and mines to single gear slot

For consistency with all other items in Epoch.
This commit is contained in:
ebaydayz
2016-09-30 21:47:48 -04:00
parent ff8fb18cbf
commit 341e734373
5 changed files with 31 additions and 1 deletions

View File

@@ -3,6 +3,7 @@ class CfgMagazines
//External references
class CA_Magazine;
class HandGrenade;
class TimeBomb;

View File

@@ -0,0 +1,15 @@
class Mine: TimeBomb
{
type = WeaponSlotItem; // Only takes up one gear slot in Epoch
};
class MineE: TimeBomb
{
type = WeaponSlotItem; // Only takes up one gear slot in Epoch
};
class PipeBomb: TimeBomb
{
displayName = $STR_DZ_MAG_SATCHEL_NAME; // Singular "Satchel Charge" for death messages "with a x"
type = WeaponSlotItem; // Only takes up one gear slot in Epoch
};

View File

@@ -23,4 +23,5 @@
#include "equip_brick.hpp"
#include "equip_lever.hpp"
#include "WaterBottle.hpp"
//#include "Canteen.hpp"
//#include "Canteen.hpp"
#include "Explosives.hpp"