X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=server%2Fworld.py;h=902a554dfe9c534bce435fdb620f3030f42d3d1e;hb=119e91aece4fc1de4b4cd1744502ea58f9bae323;hp=f31c3a69cae77efcd104006f1e0ce88c52c700c8;hpb=08f8592f1a1e5d340b6c2372551f0a3da28a07d8;p=plomrogue 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"]: