mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-15 14:11:19 +00:00
Fix Ballhog under the last commit...
It actually uses trailing item's throw speeds instead of its own, oddly enough; I don't want to mess with the gameplay there, so I just gave it its own exception.
This commit is contained in:
parent
6d19be6412
commit
2cb2b02b73
2 changed files with 2 additions and 2 deletions
|
@ -15773,7 +15773,7 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] =
|
||||||
S_BALLHOG_DEAD, // deathstate
|
S_BALLHOG_DEAD, // deathstate
|
||||||
S_NULL, // xdeathstate
|
S_NULL, // xdeathstate
|
||||||
sfx_hogbom, // deathsound
|
sfx_hogbom, // deathsound
|
||||||
0, // speed
|
64*FRACUNIT, // speed
|
||||||
16*FRACUNIT, // radius
|
16*FRACUNIT, // radius
|
||||||
32*FRACUNIT, // height
|
32*FRACUNIT, // height
|
||||||
0, // display offset
|
0, // display offset
|
||||||
|
|
|
@ -2892,7 +2892,7 @@ static mobj_t *K_ThrowKartItem(player_t *player, boolean missile, mobjtype_t map
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
// Figure out projectile speed by game speed
|
// Figure out projectile speed by game speed
|
||||||
if (missile) // Trying to keep compatability...
|
if (missile && mapthing != MT_BALLHOG) // Trying to keep compatability...
|
||||||
{
|
{
|
||||||
PROJSPEED = mobjinfo[mapthing].speed;
|
PROJSPEED = mobjinfo[mapthing].speed;
|
||||||
if (gamespeed == 0)
|
if (gamespeed == 0)
|
||||||
|
|
Loading…
Reference in a new issue