Skip to content

Commit

Permalink
- fixed: the minotaur spawned its floor flames regardless of the sett…
Browse files Browse the repository at this point in the history
…ing of compat_minotaur

A_MinotaurAtk3 was checking against the CVAR instead of the compatibility flag constant.
  • Loading branch information
Blue-Shadow authored and coelckers committed Jul 28, 2020
1 parent 86bac6b commit 7179eaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wadsrc/static/zscript/actors/raven/minotaur.zs
Expand Up @@ -347,7 +347,7 @@ class Minotaur : Actor
}
else
{
if (Floorclip > 0 && (Level.compatflags & COMPAT_MINOTAUR))
if (Floorclip > 0 && (Level.compatflags & COMPATF_MINOTAUR))
{
// only play the sound.
A_StartSound ("minotaur/fx2hit", CHAN_WEAPON);
Expand Down

0 comments on commit 7179eaa

Please sign in to comment.