X-Git-Url: https://plomlompom.com/repos/?p=plomrogue;a=blobdiff_plain;f=server%2Fcommands.py;h=40f98edd4c26f0ee41e2eeba0eb6c3dad9db3b1c;hp=90de4a9f05092086caf050f441e27672ab72d530;hb=96ae4658e929cddfb36549484c532674a2867f0e;hpb=f8865085362ad23898ac4b6a00db3b915226d9d3 diff --git a/server/commands.py b/server/commands.py index 90de4a9..40f98ed 100644 --- a/server/commands.py +++ b/server/commands.py @@ -130,18 +130,21 @@ def command_worldactive(worldactive_string): else: print("Ignored: No player defined for world to activate.") return - if world_db["MAP"]: - for id in world_db["Things"]: - if world_db["Things"][id]["T_LIFEPOINTS"]: - build_fov_map(world_db["Things"][id]) - if 0 == id: - update_map_memory(world_db["Things"][id], False) - if not world_db["Things"][0]["T_LIFEPOINTS"]: - empty_fovmap = bytearray(b" " * world_db["MAP_LENGTH"] ** 2) - world_db["Things"][0]["fovmap"] = empty_fovmap - world_db["WORLD_ACTIVE"] = 1 - else: + if not world_db["MAP"]: print("Ignoring: No map defined for world to activate.") + return + from server.config.commands import command_worldactive_test_hook + if not command_worldactive_test_hook(): + return + for tid in world_db["Things"]: + if world_db["Things"][tid]["T_LIFEPOINTS"]: + build_fov_map(world_db["Things"][tid]) + if 0 == tid: + update_map_memory(world_db["Things"][tid], False) + if not world_db["Things"][0]["T_LIFEPOINTS"]: + empty_fovmap = bytearray(b" " * world_db["MAP_LENGTH"] ** 2) + world_db["Things"][0]["fovmap"] = empty_fovmap + world_db["WORLD_ACTIVE"] = 1 def command_tid(id_string):