Revise r6625

git-svn-id: https://svn.eduke32.com/eduke32@6637 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2018-01-31 04:13:40 +00:00
parent cd02a9223e
commit 3bc83a7ceb

View file

@ -4082,7 +4082,7 @@ PALONLY:
if (actor[i].picnum == BLIMP && t->picnum == SCRAP1 && pSprite->yvel >= 0)
t->picnum = pSprite->yvel < MAXUSERTILES ? pSprite->yvel : 0;
else t->picnum += T1(i);
t->shade = -128+6 < t->shade ? t->shade-6 : -128;
t->shade = max(t->shade-6, -128);
G_MaybeTakeOnFloorPal(t, sect);
break;