From f22e2888dd568e120545d618e2526c89374e1aed Mon Sep 17 00:00:00 2001 From: cknight828 <128895471+cknight828@users.noreply.github.com> Date: Mon, 30 Sep 2024 20:17:50 +0900 Subject: [PATCH] Fix condition of learning mortar recipe from cement bag --- data/json/items/containers/containers.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/json/items/containers/containers.json b/data/json/items/containers/containers.json index 30734be24c3cb..fdee5b1cd91b1 100644 --- a/data/json/items/containers/containers.json +++ b/data/json/items/containers/containers.json @@ -163,7 +163,7 @@ { "type": "effect_on_condition", "id": "EOC_CEMENT_INSTRUCTIONS", - "condition": { "and": [ { "u_has_trait": "ILLITERATE" }, { "not": "u_driving" } ] }, + "condition": { "and": [ { "not": { "u_has_trait": "ILLITERATE" } }, { "not": "u_driving" } ] }, "effect": [ { "u_learn_recipe": "mortar_build" } ] }, {