mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-25 05:31:00 +00:00
Fixed applying of height argument in A_Fire() function
https://forum.zdoom.org/viewtopic.php?t=58090
This commit is contained in:
parent
9e07babde5
commit
4f35940c73
1 changed files with 1 additions and 1 deletions
|
@ -170,7 +170,7 @@ extend class Actor
|
|||
// don't move it if the vile lost sight
|
||||
if (!target.CheckSight (dest, 0) ) return;
|
||||
|
||||
SetOrigin(dest.Vec3Angle(24, dest.angle, height), true);
|
||||
SetOrigin(dest.Vec3Angle(24, dest.angle, spawnheight), true);
|
||||
}
|
||||
|
||||
void A_FireCrackle()
|
||||
|
|
Loading…
Reference in a new issue