aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraham Northup <grissess@nexusg.org>2019-11-16 00:30:13 -0500
committerGraham Northup <grissess@nexusg.org>2019-11-16 00:30:13 -0500
commit964ff690b2d82293b057397da482e2071d3827aa (patch)
tree7491f280d557c3137b437491a646165e175a2061
parentda7b28f7c66ace58821a4f2add4007b373dcc8f9 (diff)
Make renderer quit if client exits
-rw-r--r--render.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/render.py b/render.py
index 882b85b..d890cc0 100644
--- a/render.py
+++ b/render.py
@@ -141,4 +141,8 @@ while True:
pygame.quit()
exit()
+ if not os.path.exists(options.map_file):
+ pygame.quit()
+ exit()
+
clock.tick(60)