summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'main.py')
-rw-r--r--main.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.py b/main.py
index e980fb3..6c6cbc3 100644
--- a/main.py
+++ b/main.py
@@ -152,12 +152,13 @@ try:
autorespawn_counter-=1
fps = clock.getfps()
- if clock.newfps:
+ if False and clock.newfps:
print("FPS: %3d" % fps)
if fps < 24:
probs.report("low fps")
if fps > 50:
probs.report("high fps")
+
except ProblemException:
print("Exiting due to a problem such as low/high fps, network lags etc")