From: Christian Heller Date: Sat, 6 Feb 2016 01:37:09 +0000 (+0100) Subject: Server: Force control for proper map length before world generation. X-Git-Tag: tce~204 X-Git-Url: https://plomlompom.com/repos/?p=plomrogue;a=commitdiff_plain;h=119e91aece4fc1de4b4cd1744502ea58f9bae323 Server: Force control for proper map length before world generation. --- diff --git a/server/world.py b/server/world.py index f31c3a6..902a554 100644 --- a/server/world.py +++ b/server/world.py @@ -264,6 +264,10 @@ def make_world(seed): return (y, x) rand.seed = seed + if world_db["MAP_LENGTH"] < 1: + print("Ignoring: No map length >= 1 defined.") + return + libpr.set_maplength(world_db["MAP_LENGTH"]) player_will_be_generated = False playertype = world_db["PLAYER_TYPE"] for ThingType in world_db["ThingTypes"]: