mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-10 23:32:06 +00:00
Activated the second barrel on the HC
This commit is contained in:
parent
01c98364ba
commit
11f1eef328
2 changed files with 8 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue