mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-12 19:20:38 +00:00
Revise r6625
git-svn-id: https://svn.eduke32.com/eduke32@6637 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
cd02a9223e
commit
3bc83a7ceb
1 changed files with 1 additions and 1 deletions
|
@ -4082,7 +4082,7 @@ PALONLY:
|
||||||
if (actor[i].picnum == BLIMP && t->picnum == SCRAP1 && pSprite->yvel >= 0)
|
if (actor[i].picnum == BLIMP && t->picnum == SCRAP1 && pSprite->yvel >= 0)
|
||||||
t->picnum = pSprite->yvel < MAXUSERTILES ? pSprite->yvel : 0;
|
t->picnum = pSprite->yvel < MAXUSERTILES ? pSprite->yvel : 0;
|
||||||
else t->picnum += T1(i);
|
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);
|
G_MaybeTakeOnFloorPal(t, sect);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue