mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
- Fixed: The Cacodemon doesn't have a melee attack defined as I mistakenly
assumed when writing its DECORATE code. SVN r423 (trunk)
This commit is contained in:
parent
9b0b199bb5
commit
d718827ec1
3 changed files with 3 additions and 1 deletions
|
@ -1,4 +1,6 @@
|
|||
December 23, 2006 (Changes by Graf Zahl)
|
||||
- Fixed: The Cacodemon doesn't have a melee attack defined as I mistakenly
|
||||
assumed when writing its DECORATE code.
|
||||
- Fixed: Commander Keen's death sequence had one state duplicated.
|
||||
- Fixed: Due to the changes for custom states the internal weapons shouldn't
|
||||
define a holdatk state unless it differs from the attack state.
|
||||
|
|
|
@ -582,6 +582,7 @@ sector_t *AActor::LinkToWorldForMapThing ()
|
|||
distance = radius - distance;
|
||||
x += FixedMul(distance, finecosine[finean]);
|
||||
y += FixedMul(distance, finesine[finean]);
|
||||
ssec = R_PointInSubsector (x, y);
|
||||
break;
|
||||
}
|
||||
#else
|
||||
|
|
|
@ -29,7 +29,6 @@ ACTOR Cacodemon 3005
|
|||
See:
|
||||
HEAD A 3 A_Chase
|
||||
Loop
|
||||
Melee:
|
||||
Missile:
|
||||
HEAD B 5 A_FaceTarget
|
||||
HEAD C 5 A_FaceTarget
|
||||
|
|
Loading…
Reference in a new issue