Skip to content

Commit

Permalink
Fix JSON Lint error
Browse files Browse the repository at this point in the history
gorgon complains about the format of the JSON

references CleverRaven#27972
  • Loading branch information
mscarter committed Jan 30, 2019
1 parent 77c85a6 commit 53d6b31
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions data/json/npcs/TALK_COMMON_MISSION.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down Expand Up @@ -197,15 +199,20 @@
"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"
},
{
"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"
},
Expand Down Expand Up @@ -279,3 +286,4 @@
]
}
]

0 comments on commit 53d6b31

Please sign in to comment.