From 747572c31b3052b244ea7250b696f0c95d05be6b Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Fri, 20 Nov 2020 06:49:20 +0100
Subject: [PATCH] Fix bug disabling '.' map protection area writing.

---
 plomrogue/commands.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/plomrogue/commands.py b/plomrogue/commands.py
index 843bcfe..396b228 100644
--- a/plomrogue/commands.py
+++ b/plomrogue/commands.py
@@ -106,7 +106,8 @@ def cmd_SET_TILE_CONTROL(game, yx, control_char, connection_id):
         raise GameError('need to be logged in for this')
     if not game.sessions[connection_id]['status'] == 'admin':
         raise GameError('need to be admin for this')
-    if not control_char in game.map_control_passwords.keys():
+    if not (control_char == '.'
+            or control_char in game.map_control_passwords.keys()):
         raise GameError('no password set for this tile class')
     big_yx, little_yx = player.fov_stencil.source_yxyx(yx)
     map_control = game.get_map(big_yx, 'control')
-- 
2.30.2