From 3fa9d71236a372bc9d44fadb2f878298ea759abb Mon Sep 17 00:00:00 2001 From: Anton Simakov <67688115+GuardianDll@users.noreply.github.com> Date: Thu, 5 Sep 2024 17:32:38 +0200 Subject: [PATCH] fix you being able to "see" impossible shape when blind (#76206) * fix you being able to "see" impossible shape when blind * This one actually fixes it --- data/json/monster_special_attacks/spells.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/monster_special_attacks/spells.json b/data/json/monster_special_attacks/spells.json index 696dc475faf48..41f99c604023c 100644 --- a/data/json/monster_special_attacks/spells.json +++ b/data/json/monster_special_attacks/spells.json @@ -703,7 +703,7 @@ { "type": "effect_on_condition", "id": "EOC_impossible_shape_attack", - "condition": { "and": [ "u_can_see", { "math": [ "u_madness", ">", "10" ] } ] }, + "condition": { "and": [ { "or": [ "u_can_see", { "u_has_flag": "BLIND" } ] }, { "math": [ "u_madness", ">", "10" ] } ] }, "effect": [ { "u_add_effect": "nightmares", "duration": "18 hours" }, { "u_add_effect": "disrupted_sleep", "duration": "18 hours" },