- 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:
Blue Shadow 2020-07-28 09:42:21 +03:00 committed by drfrag
parent 09f5d1b666
commit 2cc9c0bbde

View file

@ -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);