mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-20 09:52:18 +00:00
Make Buggles spawn immediately breathable bubbles
This commit is contained in:
parent
c468ae5239
commit
c4f48ee979
2 changed files with 2 additions and 1 deletions
|
@ -17667,7 +17667,7 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] =
|
|||
0, // damage
|
||||
sfx_None, // activesound
|
||||
MF_SPECIAL|MF_NOGRAVITY|MF_SCENERY, // flags
|
||||
S_NULL // raisestate
|
||||
S_EXTRALARGEBUBBLE // raisestate
|
||||
},
|
||||
|
||||
{ // MT_WATERZAP
|
||||
|
|
|
@ -2643,6 +2643,7 @@ void P_KillMobj(mobj_t *target, mobj_t *inflictor, mobj_t *source, UINT8 damaget
|
|||
mo = P_SpawnMobj(target->x, target->y, target->z, MT_EXTRALARGEBUBBLE);
|
||||
mo->destscale = target->scale;
|
||||
P_SetScale(mo, mo->destscale);
|
||||
P_SetMobjState(mo, mo->info->raisestate);
|
||||
break;
|
||||
|
||||
case MT_YELLOWSHELL:
|
||||
|
|
Loading…
Reference in a new issue