Item boxes no longer solid

This commit is contained in:
ZTsukei 2017-02-18 15:51:17 -05:00
parent 0a782bf79e
commit 3fecdd7658
2 changed files with 4 additions and 2 deletions

View file

@ -311,8 +311,8 @@ static fixed_t K_KartItemOdds_Retro[MAXPLAYERS][NUMKARTITEMS][MAXPLAYERS] =
{
// 1 Active Player
{ //1st //
{ 40 }, // Magnet
{ 0 }, // Boo
{ 0 }, // Magnet
{ 40 }, // Boo
{ 0 }, // Mushroom
{ 0 }, // Triple Mushroom
{ 0 }, // Mega Mushroom

View file

@ -567,6 +567,8 @@ static boolean PIT_CheckThing(mobj_t *thing)
// SRB2kart 011617 - Colission code for kart items //{
if (tmthing->type == MT_RANDOMITEM)
return true;
if (tmthing->type == MT_GREENITEM || tmthing->type == MT_REDITEM || tmthing->type == MT_REDITEMDUD ||
tmthing->type == MT_GREENSHIELD || tmthing->type == MT_REDSHIELD ||
tmthing->type == MT_TRIPLEGREENSHIELD1 || tmthing->type == MT_TRIPLEGREENSHIELD2 || tmthing->type == MT_TRIPLEGREENSHIELD3 ||