diff --git a/src/info.c b/src/info.c index 8482354cd..683822adb 100644 --- a/src/info.c +++ b/src/info.c @@ -16876,7 +16876,7 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] = sfx_None, // deathsound 0, // speed 50*FRACUNIT, // radius - 100*FRACUNIT, // height + 2*FRACUNIT, // height 0, // dispoffset 0, // mass 0, // damage diff --git a/src/objects/adventure-air-booster.c b/src/objects/adventure-air-booster.c index 268de0835..884a8431a 100644 --- a/src/objects/adventure-air-booster.c +++ b/src/objects/adventure-air-booster.c @@ -214,4 +214,5 @@ void Obj_AdventureAirBoosterFuse(mobj_t *mobj) mobj->destscale = mobj->movefactor; ghost->destscale = mobj->movefactor * 8; ghost->scalespeed = mobj->movefactor; + ghost->height = mobj->height; }