mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Merge branch 'fix-perma-ring-leniency' into 'master'
Perma ring box should never leniency pickup as item Closes #1449 See merge request KartKrew/Kart!2429
This commit is contained in:
commit
e5f740f4a3
1 changed files with 1 additions and 1 deletions
|
|
@ -451,7 +451,7 @@ void P_TouchSpecialThing(mobj_t *special, mobj_t *toucher, boolean heightcheck)
|
||||||
if (special->fuse) // This box is respawning, but was broken very recently (see P_FuseThink)
|
if (special->fuse) // This box is respawning, but was broken very recently (see P_FuseThink)
|
||||||
{
|
{
|
||||||
// What was this box broken as?
|
// What was this box broken as?
|
||||||
if (special->cvmem)
|
if (special->cvmem && !(special->flags2 & MF2_BOSSDEAD))
|
||||||
K_StartItemRoulette(player, false);
|
K_StartItemRoulette(player, false);
|
||||||
else
|
else
|
||||||
K_StartItemRoulette(player, true);
|
K_StartItemRoulette(player, true);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue