]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - host.c
pmodel fixes (now works properly in listen/singleplayer)
[xonotic/darkplaces.git] / host.c
diff --git a/host.c b/host.c
index 416d4be0f696b39d95c5d84f1b24a8d6fd88e48e..2c3bcd46ec3681d5c38fc497fe66c2019890c3ef 100644 (file)
--- a/host.c
+++ b/host.c
@@ -618,7 +618,7 @@ void Host_ServerFrame (void)
 {
        frametimetotal += host_frametime;
        // LordHavoc: cap server at sys_ticrate in listen games
-       if (!isDedicated && ((realtime - lastservertime) < sys_ticrate.value))
+       if (!isDedicated && svs.maxclients > 1 && ((realtime - lastservertime) < sys_ticrate.value))
                return;
 // run the world state
        pr_global_struct->frametime = frametimetotal;