mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 07:12:02 +00:00
- fixed: With P_ExplodeMissile now working properly it is no longer valid to terminate a looping sound in a missile's death state because it now gets called after the death sound has been started.
This commit is contained in:
parent
4a3427fe50
commit
6665ac5837
3 changed files with 3 additions and 3 deletions
|
@ -99,7 +99,7 @@ ACTOR CrusaderMissile
|
|||
Loop
|
||||
Death:
|
||||
SMIS A 0 Bright A_SetTranslucent(1,1)
|
||||
SMIS A 5 Bright A_StopSoundEx("Voice")
|
||||
SMIS A 5 Bright
|
||||
SMIS B 5 Bright
|
||||
SMIS C 4 Bright
|
||||
SMIS DEFG 2 Bright
|
||||
|
|
|
@ -85,7 +85,7 @@ ACTOR BishopMissile
|
|||
Loop
|
||||
Death:
|
||||
SMIS A 0 Bright A_SetTranslucent(1,1)
|
||||
SMIS A 0 Bright A_StopSoundEx("Voice")
|
||||
SMIS A 0 Bright // State left for savegame compatibility
|
||||
SMIS A 5 Bright A_Explode(64,64,1,1)
|
||||
SMIS B 5 Bright
|
||||
SMIS C 4 Bright
|
||||
|
|
|
@ -390,7 +390,7 @@ ACTOR MiniMissile
|
|||
Loop
|
||||
Death:
|
||||
SMIS A 0 Bright A_SetTranslucent(1,1)
|
||||
SMIS A 0 Bright A_StopSoundEx("Voice")
|
||||
SMIS A 0 Bright // State left for savegame compatibility
|
||||
SMIS A 5 Bright A_Explode(64,64,1,1)
|
||||
SMIS B 5 Bright
|
||||
SMIS C 4 Bright
|
||||
|
|
Loading…
Reference in a new issue