From 53d6b3100849a0bd047e161227050ce2b41443f9 Mon Sep 17 00:00:00 2001 From: Michael Carter Date: Wed, 30 Jan 2019 16:42:58 -0600 Subject: [PATCH] Fix JSON Lint error gorgon complains about the format of the JSON references #27972 --- data/json/npcs/TALK_COMMON_MISSION.json | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/data/json/npcs/TALK_COMMON_MISSION.json b/data/json/npcs/TALK_COMMON_MISSION.json index bccf31379cba3..d8a8bc5eb4352 100644 --- a/data/json/npcs/TALK_COMMON_MISSION.json +++ b/data/json/npcs/TALK_COMMON_MISSION.json @@ -154,7 +154,9 @@ { "text": "Yup! Here it is!", "topic": "TALK_MISSION_SUCCESS", - "condition": { "and": [ { "or": [ { "mission_goal": "MGOAL_FIND_ITEM" }, { "mission_goal": "MGOAL_FIND_ANY_ITEM" } ] }, "mission_complete" ] }, + "condition": { + "and": [ { "or": [ { "mission_goal": "MGOAL_FIND_ITEM" }, { "mission_goal": "MGOAL_FIND_ANY_ITEM" } ] }, "mission_complete" ] + }, "switch": true, "effect": "mission_success" }, @@ -197,7 +199,10 @@ "text": "I killed them. All of them.", "topic": "TALK_MISSION_SUCCESS", "condition": { - "and": [ { "or": [ { "mission_goal": "MGOAL_KILL_MONSTER_SPEC" }, { "mission_goal": "MGOAL_KILL_MONSTER_TYPE" } ] }, "mission_complete" ] + "and": [ + { "or": [ { "mission_goal": "MGOAL_KILL_MONSTER_SPEC" }, { "mission_goal": "MGOAL_KILL_MONSTER_TYPE" } ] }, + "mission_complete" + ] }, "switch": true, "effect": "mission_success" @@ -205,7 +210,9 @@ { "text": "I brought 'em.", "topic": "TALK_MISSION_SUCCESS", - "condition": { "and": [ "mission_complete", { "mission_goal": "MGOAL_RECRUIT_NPC" }, { "mission_goal": "MGOAL_RECRUIT_NPC_CLASS" } ] }, + "condition": { + "and": [ "mission_complete", { "mission_goal": "MGOAL_RECRUIT_NPC" }, { "mission_goal": "MGOAL_RECRUIT_NPC_CLASS" } ] + }, "switch": true, "effect": "mission_success" }, @@ -279,3 +286,4 @@ ] } ] +