mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 09:11:48 +00:00
Fix Flung Spheres not using the Blue Sphere collection effect
This commit is contained in:
parent
d6d424f102
commit
58b3b8e075
1 changed files with 1 additions and 1 deletions
|
@ -563,7 +563,7 @@ void P_TouchSpecialThing(mobj_t *special, mobj_t *toucher, boolean heightcheck)
|
||||||
special->momx = special->momy = special->momz = 0;
|
special->momx = special->momy = special->momz = 0;
|
||||||
P_GivePlayerSpheres(player, 1);
|
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;
|
special->destscale = ((player->powers[pw_carry] == CR_NIGHTSMODE) ? 4 : 2)*special->scale;
|
||||||
if (states[special->info->deathstate].tics > 0)
|
if (states[special->info->deathstate].tics > 0)
|
||||||
|
|
Loading…
Reference in a new issue