diff --git a/docs/rh-log.txt b/docs/rh-log.txt index 8e74bf25eb..a778feae5b 100644 --- a/docs/rh-log.txt +++ b/docs/rh-log.txt @@ -1,3 +1,7 @@ +September 14, 2008 (Changes by Graf Zahl) +- fixed: For Chex Quest some CVars were initialized to Heretic's default. +- fixed pickup message for LargeZorchPack. + September 13, 2008 (Changes by Graf Zahl) - Moved IF_ALWAYSPICKUP and GiveQuest into CallTryPickup so that they are automatically used by all inventory classes. diff --git a/src/gameconfigfile.cpp b/src/gameconfigfile.cpp index 508cd068e7..820804971c 100644 --- a/src/gameconfigfile.cpp +++ b/src/gameconfigfile.cpp @@ -258,7 +258,7 @@ void FGameConfigFile::DoGameSetup (const char *gamename) ReadCVars (0); } - if (game != Doom && game != Strife) + if (game != Doom && game != Strife && game != Chex) { SetRavenDefaults (game == Hexen); }