From c86ca5e891f8873ad07cbdaae80d55a7746e69d6 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 14 Sep 2008 10:28:20 +0000 Subject: [PATCH] - fixed: For Chex Quest some CVars were initialized to Heretic's default. SVN r1223 (trunk) --- docs/rh-log.txt | 4 ++++ src/gameconfigfile.cpp | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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); }