mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 03:30:46 +00:00
Fix BOSS2 RPG attack
This commit is contained in:
parent
6b7245ec97
commit
36e932a6cb
1 changed files with 1 additions and 1 deletions
|
@ -1112,7 +1112,7 @@ growspark_rr:
|
||||||
else if (PN(spriteNum) == BOSS2)
|
else if (PN(spriteNum) == BOSS2)
|
||||||
{
|
{
|
||||||
vel += 128;
|
vel += 128;
|
||||||
startPos.z += 4 << 8;
|
startPos.z += 24<<8;
|
||||||
}
|
}
|
||||||
|
|
||||||
Zvel = tabledivide32_noinline((g_player[otherSprite].ps->opos.z - startPos.z) * vel, safeldist(g_player[otherSprite].ps->i, pSprite));
|
Zvel = tabledivide32_noinline((g_player[otherSprite].ps->opos.z - startPos.z) * vel, safeldist(g_player[otherSprite].ps->i, pSprite));
|
||||||
|
|
Loading…
Reference in a new issue