- am_overlay turns off the overlay when set to zero

This commit is contained in:
Rachael Alexanderson 2024-04-17 18:32:46 -04:00
parent c7bba2a126
commit 178896d6fb
No known key found for this signature in database
GPG key ID: 26A8ACCE97115EE0

View file

@ -156,7 +156,15 @@ CUSTOM_CVAR(Int, am_cheat, 0, 0)
CVAR(Int, am_rotate, 0, CVAR_ARCHIVE);
CVAR(Int, am_overlay, 0, CVAR_ARCHIVE);
CUSTOM_CVAR(Int, am_overlay, 0, CVAR_ARCHIVE)
{
// stop overlay if we're told not to use it anymore.
if (automapactive && viewactive && (self == 0))
{
automapactive = false;
viewactive = true;
}
}
CVAR(Bool, am_showsecrets, true, CVAR_ARCHIVE);
CVAR(Bool, am_showmonsters, true, CVAR_ARCHIVE);
CVAR(Bool, am_showitems, false, CVAR_ARCHIVE);