mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
- fixed a few Heretic actors:
* The pod generator's attacksound was wrong * The teleglitter generators need different flags if they are supposed to work with z-aware spawning of the glitter. * The knight's axes need the THRUGHOST flag. SVN r1582 (trunk)
This commit is contained in:
parent
b9fa7626bc
commit
6fd62b68a8
3 changed files with 12 additions and 4 deletions
|
@ -1,4 +1,11 @@
|
||||||
May 14, 2009
|
May 14, 2009 (Changes by Graf Zahl)
|
||||||
|
- fixed a few Heretic actors:
|
||||||
|
* The pod generator's attacksound was wrong
|
||||||
|
* The teleglitter generators need different flags if they are supposed to work
|
||||||
|
with z-aware spawning of the glitter.
|
||||||
|
* The knight's axes need the THRUGHOST flag.
|
||||||
|
|
||||||
|
May 14, 2009
|
||||||
- Fixed non-POD passing in G_BuildSaveName() and other things GCC warned
|
- Fixed non-POD passing in G_BuildSaveName() and other things GCC warned
|
||||||
about.
|
about.
|
||||||
- Added support for imploded zips.
|
- Added support for imploded zips.
|
||||||
|
|
|
@ -68,7 +68,7 @@ ACTOR PodGenerator 43
|
||||||
+NOBLOCKMAP
|
+NOBLOCKMAP
|
||||||
+NOSECTOR
|
+NOSECTOR
|
||||||
+DONTSPLASH
|
+DONTSPLASH
|
||||||
AttackSound "misc/podgrow"
|
AttackSound "world/podgrow"
|
||||||
|
|
||||||
action native A_MakePod (class<Actor> podtype = "Pod");
|
action native A_MakePod (class<Actor> podtype = "Pod");
|
||||||
|
|
||||||
|
@ -88,9 +88,9 @@ ACTOR TeleGlitterGenerator1 74
|
||||||
Game Heretic
|
Game Heretic
|
||||||
SpawnID 166
|
SpawnID 166
|
||||||
+NOBLOCKMAP
|
+NOBLOCKMAP
|
||||||
+NOSECTOR
|
|
||||||
+NOGRAVITY
|
+NOGRAVITY
|
||||||
+DONTSPLASH
|
+DONTSPLASH
|
||||||
|
+MOVEWITHSECTOR
|
||||||
States
|
States
|
||||||
{
|
{
|
||||||
Spawn:
|
Spawn:
|
||||||
|
@ -106,9 +106,9 @@ ACTOR TeleGlitterGenerator2 52
|
||||||
Game Heretic
|
Game Heretic
|
||||||
SpawnID 167
|
SpawnID 167
|
||||||
+NOBLOCKMAP
|
+NOBLOCKMAP
|
||||||
+NOSECTOR
|
|
||||||
+NOGRAVITY
|
+NOGRAVITY
|
||||||
+DONTSPLASH
|
+DONTSPLASH
|
||||||
|
+MOVEWITHSECTOR
|
||||||
States
|
States
|
||||||
{
|
{
|
||||||
Spawn:
|
Spawn:
|
||||||
|
|
|
@ -86,6 +86,7 @@ ACTOR KnightAxe
|
||||||
-ACTIVATEIMPACT
|
-ACTIVATEIMPACT
|
||||||
-ACTIVATEPCROSS
|
-ACTIVATEPCROSS
|
||||||
+WINDTHRUST
|
+WINDTHRUST
|
||||||
|
+THRUGHOST
|
||||||
DeathSound "hknight/hit"
|
DeathSound "hknight/hit"
|
||||||
States
|
States
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue