summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/d_net.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/d_net.c b/src/d_net.c
index c0243e8c..b8ecd645 100644
--- a/src/d_net.c
+++ b/src/d_net.c
@@ -413,11 +413,7 @@ static int GetLowTic(void)
int i;
int lowtic;
- if (demoplayback)
- {
- lowtic = maketic;
- }
- else
+ if (net_client_connected)
{
lowtic = INT_MAX;
@@ -430,6 +426,10 @@ static int GetLowTic(void)
}
}
}
+ else
+ {
+ lowtic = maketic;
+ }
return lowtic;
}