mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-02-21 03:11:24 +00:00
Small correction
This commit is contained in:
parent
584082882c
commit
91214fbee5
1 changed files with 1 additions and 3 deletions
|
@ -943,8 +943,6 @@ static fixed_t K_GetMobjWeight(mobj_t *mobj, mobj_t *against)
|
|||
case MT_GREENSHIELD:
|
||||
if (against->player)
|
||||
weight = (against->player->kartweight)<<FRACBITS;
|
||||
else
|
||||
weight = 8<<FRACBITS;
|
||||
break;
|
||||
case MT_JAWZ:
|
||||
case MT_JAWZ_DUD:
|
||||
|
@ -952,7 +950,7 @@ static fixed_t K_GetMobjWeight(mobj_t *mobj, mobj_t *against)
|
|||
if (against->player)
|
||||
weight = (against->player->kartweight+3)<<FRACBITS;
|
||||
else
|
||||
weight = 11<<FRACBITS;
|
||||
weight = 8<<FRACBITS;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue