Bigger Egg Capsule hitbox

This commit is contained in:
Sally Coolatta 2022-12-02 04:21:23 -05:00
parent bdbd79dd41
commit e8e02058ef
2 changed files with 4 additions and 4 deletions

View file

@ -28661,8 +28661,8 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] =
S_NULL, // xdeathstate S_NULL, // xdeathstate
sfx_None, // deathsound sfx_None, // deathsound
0, // speed 0, // speed
28<<FRACBITS, // radius 56<<FRACBITS, // radius
112<<FRACBITS, // height 144<<FRACBITS, // height
0, // display offset 0, // display offset
100, // mass 100, // mass
0, // damage 0, // damage

View file

@ -9177,8 +9177,8 @@ static boolean P_MobjRegularThink(mobj_t *mobj)
|| state == S_BATTLECAPSULE_SUPPORTFLY || state == S_BATTLECAPSULE_SUPPORTFLY
|| state == S_KARMAWHEEL) || state == S_KARMAWHEEL)
{ {
fixed_t offx = mobj->radius; fixed_t offx = 28 * mobj->scale;
fixed_t offy = mobj->radius; fixed_t offy = 28 * mobj->scale;
if (cur->extravalue1 & 1) if (cur->extravalue1 & 1)
offx = -offx; offx = -offx;