mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-13 07:57:51 +00:00
Added cl_showsecretmessage
Controls if secret notifications are displayed (def. true)
This commit is contained in:
parent
31611c17d5
commit
c85105f552
2 changed files with 3 additions and 1 deletions
|
@ -714,6 +714,7 @@ void P_SectorDamage(int tag, int amount, FName type, const PClass *protectClass,
|
||||||
//============================================================================
|
//============================================================================
|
||||||
|
|
||||||
CVAR(Bool, showsecretsector, false, 0)
|
CVAR(Bool, showsecretsector, false, 0)
|
||||||
|
CVAR(Bool, cl_showsecretmessage, true, CVAR_ARCHIVE)
|
||||||
|
|
||||||
void P_GiveSecret(AActor *actor, bool printmessage, bool playsound, int sectornum)
|
void P_GiveSecret(AActor *actor, bool printmessage, bool playsound, int sectornum)
|
||||||
{
|
{
|
||||||
|
@ -723,7 +724,7 @@ void P_GiveSecret(AActor *actor, bool printmessage, bool playsound, int sectornu
|
||||||
{
|
{
|
||||||
actor->player->secretcount++;
|
actor->player->secretcount++;
|
||||||
}
|
}
|
||||||
if (actor->CheckLocalView (consoleplayer))
|
if (cl_showsecretmessage && actor->CheckLocalView(consoleplayer))
|
||||||
{
|
{
|
||||||
if (printmessage)
|
if (printmessage)
|
||||||
{
|
{
|
||||||
|
|
|
@ -1098,6 +1098,7 @@ OptionMenu MessageOptions
|
||||||
Title "MESSAGES"
|
Title "MESSAGES"
|
||||||
Option "Show messages", "show_messages", "OnOff"
|
Option "Show messages", "show_messages", "OnOff"
|
||||||
Option "Show obituaries", "show_obituaries", "OnOff"
|
Option "Show obituaries", "show_obituaries", "OnOff"
|
||||||
|
Option "Show secret notifications", "cl_showsecretmessage", "OnOff"
|
||||||
Option "Scale text in high res", "con_scaletext", "ScaleValues"
|
Option "Scale text in high res", "con_scaletext", "ScaleValues"
|
||||||
Option "Minimum message level", "msg", "MessageLevels"
|
Option "Minimum message level", "msg", "MessageLevels"
|
||||||
Option "Center messages", "con_centernotify", "OnOff"
|
Option "Center messages", "con_centernotify", "OnOff"
|
||||||
|
|
Loading…
Reference in a new issue