mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Bigger Egg Capsule hitbox
This commit is contained in:
parent
bdbd79dd41
commit
e8e02058ef
2 changed files with 4 additions and 4 deletions
|
|
@ -28661,8 +28661,8 @@ mobjinfo_t mobjinfo[NUMMOBJTYPES] =
|
|||
S_NULL, // xdeathstate
|
||||
sfx_None, // deathsound
|
||||
0, // speed
|
||||
28<<FRACBITS, // radius
|
||||
112<<FRACBITS, // height
|
||||
56<<FRACBITS, // radius
|
||||
144<<FRACBITS, // height
|
||||
0, // display offset
|
||||
100, // mass
|
||||
0, // damage
|
||||
|
|
|
|||
|
|
@ -9177,8 +9177,8 @@ static boolean P_MobjRegularThink(mobj_t *mobj)
|
|||
|| state == S_BATTLECAPSULE_SUPPORTFLY
|
||||
|| state == S_KARMAWHEEL)
|
||||
{
|
||||
fixed_t offx = mobj->radius;
|
||||
fixed_t offy = mobj->radius;
|
||||
fixed_t offx = 28 * mobj->scale;
|
||||
fixed_t offy = 28 * mobj->scale;
|
||||
|
||||
if (cur->extravalue1 & 1)
|
||||
offx = -offx;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue