diff --git a/reaction/ChangeLog b/reaction/ChangeLog index 92a9670c..6a894a3e 100644 --- a/reaction/ChangeLog +++ b/reaction/ChangeLog @@ -1,5 +1,7 @@ # List fixes here for the 2.3 release +* Fixed the HC's power. +* Items from the weapon/item menus are now disabled if they're banned from the server * Added Itembanning * Fixed a bug in weaponbanning * Fixed bugs screaming about teamkills in TDM and CTB @@ -46,7 +48,6 @@ * callvote and vote cmd's now know about CTB spectators and dead players. * MP5 headshots now deal the correct amount of damage. * Added replacement options for items. -* Items from the weapon/item menus are now disabled if they're banned from the server # List fixes here for the 2.25 release diff --git a/reaction/game/g_weapon.c b/reaction/game/g_weapon.c index aa42cc7d..665d8c12 100644 --- a/reaction/game/g_weapon.c +++ b/reaction/game/g_weapon.c @@ -5,6 +5,9 @@ //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.85 2002/12/20 14:29:47 jbravo +// Activated the second barrel on the HC +// // Revision 1.84 2002/10/26 22:03:43 jbravo // Made TeamDM work RQ3 style. // @@ -1568,7 +1571,9 @@ void Weapon_HandCannon_Fire(gentity_t * ent) tent2->s.otherEntityNum = ent->s.number; tent2->s.angles2[1] += 5; //Elder: note negative one - ShotgunPattern(tent2->s.pos.trBase, tent2->s.origin2, tent2->s.eventParm, ent, -1); + //JBravo: Yes, why is that ? removing... +// ShotgunPattern(tent2->s.pos.trBase, tent2->s.origin2, tent2->s.eventParm, ent, -1); + ShotgunPattern(tent2->s.pos.trBase, tent2->s.origin2, tent2->s.eventParm, ent, WP_HANDCANNON); //Elder: added for damage report RQ3_ProduceShotgunDamageReport(ent);