diff options
| -rw-r--r-- | server/area_manager.py | 1 | ||||
| -rw-r--r-- | server/commands.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/server/area_manager.py b/server/area_manager.py index 372195b9..15dddd60 100644 --- a/server/area_manager.py +++ b/server/area_manager.py @@ -81,6 +81,7 @@ class AreaManager: def unlock(self): self.is_locked = False + self.blankposting_allowed = True self.invite_list = {} self.send_host_message('This area is open now.') diff --git a/server/commands.py b/server/commands.py index 6d34338d..7c212baf 100644 --- a/server/commands.py +++ b/server/commands.py @@ -643,6 +643,7 @@ def ooc_cmd_uncm(client, arg): if client.is_cm: client.is_cm = False client.area.owned = False + client.area.blankposting_allowed = True if client.area.is_locked: client.area.unlock() client.area.send_host_message('{} is no longer CM in this area.'.format(client.get_char_name())) |
