summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon Howard2008-07-31 22:01:38 +0000
committerSimon Howard2008-07-31 22:01:38 +0000
commitb2b2f60ed34d3530745167099aff4fb6d64cd4cb (patch)
treeca78ee8f247188c159f78069e488b0a179b6c65f /src
parenta151944333d2e7318fe75868ec2455ec70fb0b6e (diff)
downloadchocolate-doom-b2b2f60ed34d3530745167099aff4fb6d64cd4cb.tar.gz
chocolate-doom-b2b2f60ed34d3530745167099aff4fb6d64cd4cb.tar.bz2
chocolate-doom-b2b2f60ed34d3530745167099aff4fb6d64cd4cb.zip
Update netcode to allow chex quest gameversion.
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1168
Diffstat (limited to 'src')
-rw-r--r--src/net_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net_common.c b/src/net_common.c
index 31444e28..5af6aaa7 100644
--- a/src/net_common.c
+++ b/src/net_common.c
@@ -566,7 +566,7 @@ boolean NET_ValidGameSettings(GameMode_t mode, GameMission_t mission,
if (settings->skill < sk_noitems || settings->skill > sk_nightmare)
return false;
- if (settings->gameversion < exe_doom_1_9 || settings->gameversion > exe_final)
+ if (settings->gameversion < exe_doom_1_9 || settings->gameversion > exe_chex)
return false;
if (mode == shareware || mode == retail || mode == registered)