From 5a75ab241a01d23babfd01e85835f16ec4907cb8 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Sun, 13 Dec 2020 03:09:54 +0100 Subject: [PATCH] Fix broken FLATTEN_SURROUNDINGS. --- plomrogue/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plomrogue/tasks.py b/plomrogue/tasks.py index f7fb312..68f3269 100644 --- a/plomrogue/tasks.py +++ b/plomrogue/tasks.py @@ -78,7 +78,7 @@ class Task_FLATTEN_SURROUNDINGS(Task): self.thing.position).values()): if not self.thing.game.can_do_tile_with_pw(*yxyx, self.args[0]): continue - self.thing.game.maps[yxyx[0]][yxyx[1]] = self.game.get_flatland() + self.thing.game.maps[yxyx[0]][yxyx[1]] = self.thing.game.get_flatland() self.thing.game.record_fov_change(yxyx) -- 2.30.2