Small correction

This commit is contained in:
TehRealSalt 2018-07-20 16:13:41 -04:00
parent 584082882c
commit 91214fbee5
1 changed files with 1 additions and 3 deletions

View File

@ -943,8 +943,6 @@ static fixed_t K_GetMobjWeight(mobj_t *mobj, mobj_t *against)
case MT_GREENSHIELD: case MT_GREENSHIELD:
if (against->player) if (against->player)
weight = (against->player->kartweight)<<FRACBITS; weight = (against->player->kartweight)<<FRACBITS;
else
weight = 8<<FRACBITS;
break; break;
case MT_JAWZ: case MT_JAWZ:
case MT_JAWZ_DUD: case MT_JAWZ_DUD:
@ -952,7 +950,7 @@ static fixed_t K_GetMobjWeight(mobj_t *mobj, mobj_t *against)
if (against->player) if (against->player)
weight = (against->player->kartweight+3)<<FRACBITS; weight = (against->player->kartweight+3)<<FRACBITS;
else else
weight = 11<<FRACBITS; weight = 8<<FRACBITS;
break; break;
default: default:
break; break;