mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-12-04 01:41:56 +00:00
- fixed: the minotaur spawned its floor flames regardless of the setting of compat_minotaur
A_MinotaurAtk3 was checking against the CVAR instead of the compatibility flag constant. # Conflicts: # wadsrc/static/zscript/actors/raven/minotaur.zs
This commit is contained in:
parent
09f5d1b666
commit
2cc9c0bbde
1 changed files with 1 additions and 1 deletions
|
@ -347,7 +347,7 @@ class Minotaur : Actor
|
|||
}
|
||||
else
|
||||
{
|
||||
if (Floorclip > 0 && (compatflags & COMPAT_MINOTAUR))
|
||||
if (Floorclip > 0 && (compatflags & COMPATF_MINOTAUR))
|
||||
{
|
||||
// only play the sound.
|
||||
A_StartSound ("minotaur/fx2hit", CHAN_WEAPON);
|
||||
|
|
Loading…
Reference in a new issue