mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
- fixed: Hexen's serpent was still using "None" for 'no state', which in ZScript is done with null.
This commit is contained in:
parent
387287008c
commit
e3bee84860
1 changed files with 2 additions and 2 deletions
|
@ -40,7 +40,7 @@ class Serpent : Actor
|
||||||
SSPT H 10 A_Look;
|
SSPT H 10 A_Look;
|
||||||
Loop;
|
Loop;
|
||||||
See:
|
See:
|
||||||
SSPT HH 1 A_Chase("Melee", "None", CHF_NIGHTMAREFAST|CHF_NOPLAYACTIVE);
|
SSPT HH 1 A_Chase("Melee", null, CHF_NIGHTMAREFAST|CHF_NOPLAYACTIVE);
|
||||||
SSPT H 2 A_SerpentHumpDecide;
|
SSPT H 2 A_SerpentHumpDecide;
|
||||||
Loop;
|
Loop;
|
||||||
Pain:
|
Pain:
|
||||||
|
@ -81,7 +81,7 @@ class Serpent : Actor
|
||||||
SSPT [ 1 A_FreezeDeathChunks;
|
SSPT [ 1 A_FreezeDeathChunks;
|
||||||
Wait;
|
Wait;
|
||||||
Walk:
|
Walk:
|
||||||
SSPT IJI 5 A_Chase("Attack", "None", CHF_NIGHTMAREFAST);
|
SSPT IJI 5 A_Chase("Attack", null, CHF_NIGHTMAREFAST);
|
||||||
SSPT J 5 A_SerpentCheckForAttack;
|
SSPT J 5 A_SerpentCheckForAttack;
|
||||||
Goto Dive;
|
Goto Dive;
|
||||||
Hump:
|
Hump:
|
||||||
|
|
Loading…
Reference in a new issue