commit b2b2f60ed34d3530745167099aff4fb6d64cd4cb
Author: Simon Howard <fraggle@gmail.com>
AuthorDate: Thu Jul 31 22:01:38 2008 +0000
Commit: Simon Howard <fraggle@gmail.com>
CommitDate: Thu Jul 31 22:01:38 2008 +0000
Update netcode to allow chex quest gameversion.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1168
---
src/net_common.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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)