Skip to content

Commit

Permalink
renamed properly to throwcrate and references altered
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-hopoo committed Jul 19, 2023
1 parent 0a1ab4b commit c366647
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion testmod/bizzBounceBomb.qc → testmod/bizzThrowCrate.qc
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ void(entity parent, string modl, vector org, vector vel, INTEGER effect, INTEGER
};

//w_firegrenade except it does no damage and only pushes you.
void() W_FireBounceBomb =
void() W_FireCrate =
{
local vector vel;
// all the deathmatch code is probably worthless but I won't remove it.
Expand Down
2 changes: 1 addition & 1 deletion testmod/progs.src
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include "combat.qc"
#include "items.qc"
#include "proj.qc"
#include "bizzBounceBomb.qc"
#include "bizzThrowCrate.qc"
#include "bizzHookAxe.qc"
#include "weapons.qc"
#include "world.qc"
Expand Down
Binary file modified testmod/qwprogs.dat
Binary file not shown.
Binary file modified testmod/qwprogs.lno
Binary file not shown.
6 changes: 1 addition & 5 deletions testmod/weapons.qc
Original file line number Diff line number Diff line change
Expand Up @@ -464,10 +464,6 @@ W_FireGrenade
*/
void() W_FireGrenade =
{
//intercept with BounceBomb - Bizz
// W_FireBounceBomb ();
// return;
// end of intercept
local vector vel;

if (deathmatch != 4)
Expand Down Expand Up @@ -851,7 +847,7 @@ void() W_Attack =
r = 0.6;
break;
case IT_CRATES:
W_FireBounceBomb();
W_FireCrate();
r = 0.5;
break;
case IT_ROCKET_LAUNCHER:
Expand Down

0 comments on commit c366647

Please sign in to comment.