Cheese mode activate!

This commit is contained in:
James R 2020-07-01 16:35:38 -07:00
parent 696f9707fc
commit 2cbf7ac27d
3 changed files with 3 additions and 3 deletions

View File

@ -2068,7 +2068,7 @@ msgstr ""
#: m_cheat.c:292
#, c-format
msgid "Sissy Mode %s\n"
msgid "Cheese Mode %s\n"
msgstr ""
#: m_cheat.c:315 m_cheat.c:349 m_cheat.c:514 m_cheat.c:538 m_cheat.c:557

View File

@ -2145,7 +2145,7 @@ msgstr ""
#: m_cheat.c:294
#, c-format
msgid "Sissy Mode %s\n"
msgid "Cheese Mode %s\n"
msgstr ""
#: m_cheat.c:314

View File

@ -288,7 +288,7 @@ void Command_CheatGod_f(void)
plyr = &players[consoleplayer];
plyr->pflags ^= PF_GODMODE;
CONS_Printf(M_GetText("Sissy Mode %s\n"), plyr->pflags & PF_GODMODE ? M_GetText("On") : M_GetText("Off"));
CONS_Printf(M_GetText("Cheese Mode %s\n"), plyr->pflags & PF_GODMODE ? M_GetText("On") : M_GetText("Off"));
G_SetGameModified(multiplayer);
}