mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 01:01:33 +00:00
Merge branch 'sphere-fix' into 'next'
Fix Flung Spheres not using the Blue Sphere collection effect See merge request STJr/SRB2!1995
This commit is contained in:
commit
f1106236ad
1 changed files with 1 additions and 1 deletions
|
@ -619,7 +619,7 @@ void P_TouchSpecialThing(mobj_t *special, mobj_t *toucher, boolean heightcheck)
|
|||
special->momx = special->momy = special->momz = 0;
|
||||
P_GivePlayerSpheres(player, 1);
|
||||
|
||||
if (special->type == MT_BLUESPHERE)
|
||||
if (special->type == MT_BLUESPHERE || special->type == MT_FLINGBLUESPHERE)
|
||||
{
|
||||
special->destscale = ((player->powers[pw_carry] == CR_NIGHTSMODE) ? 4 : 2)*special->scale;
|
||||
if (states[special->info->deathstate].tics > 0)
|
||||
|
|
Loading…
Reference in a new issue