]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
allow saving multiplayer games from the menu, rather than refusing
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 18 Apr 2010 06:35:20 +0000 (06:35 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 18 Apr 2010 06:35:20 +0000 (06:35 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@10096 d7cf8633-e32d-0410-b094-e92efae38249

menu.c

diff --git a/menu.c b/menu.c
index 5958dcbf88da0eac127dcb129373a6a836bc2cc2..444fc0c57a610e0ac2f6156ebeaf1b21f097aa51 100644 (file)
--- a/menu.c
+++ b/menu.c
@@ -867,10 +867,16 @@ void M_Menu_Save_f (void)
 {
        if (!sv.active)
                return;
+#if 1
+       // LordHavoc: allow saving multiplayer games
+       if (cl.islocalgame && cl.intermission)
+               return;
+#else
        if (cl.intermission)
                return;
        if (!cl.islocalgame)
                return;
+#endif
        m_entersound = true;
        m_state = m_save;
        key_dest = key_menu;