Skip to content
This repository has been archived by the owner on Jun 20, 2020. It is now read-only.

Commit

Permalink
Another RR bug ;(
Browse files Browse the repository at this point in the history
  • Loading branch information
nukeykt committed Oct 28, 2018
1 parent b8ac6eb commit 94e2d59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/rr/src/actors.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ void A_RadiusDamage(int spriteNum, int blastRadius, int dmg1, int dmg2, int dmg3
if (!A_CheckSpriteFlags(otherSprite, SFLAG_NODAMAGEPUSH))
{
if (pOther->xvel < 0) pOther->xvel = 0;
pOther->xvel += (pSprite->extra<<2);
pOther->xvel += ((RR ? pOther->extra : pSprite->extra)<<2);
}

switch (DYNAMICTILEMAP(pOther->picnum))
Expand Down

0 comments on commit 94e2d59

Please sign in to comment.