X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/balance2?a=blobdiff_plain;f=plomrogue%2Fcommands.py;h=3a183b9f08f905062e83a902784c5bf2406c9e48;hb=8d0b5840b7df40ee883fdcf2fa1b4cd1d39e26fa;hp=770fb2282d6a9f803bfe9210cda905340a041875;hpb=679c7c1932187a3ca008dad2e580e0e1080482fc;p=plomrogue2 diff --git a/plomrogue/commands.py b/plomrogue/commands.py index 770fb22..3a183b9 100644 --- a/plomrogue/commands.py +++ b/plomrogue/commands.py @@ -82,7 +82,7 @@ def cmd_SET_TILE_CONTROL(game, yx, control_char, connection_id): map_control = game.get_map(big_yx, 'control') map_control[little_yx] = control_char game.changed = True - game.changed_fovs = True + game.record_fov_change((big_yx, little_yx)) cmd_SET_TILE_CONTROL.argtypes = 'yx_tuple:nonneg char' def cmd_THING_PROTECTION(game, thing_id, protection_char, connection_id):