diff options
| author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2021-09-22 18:35:08 -0700 | 
|---|---|---|
| committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2021-09-22 18:35:08 -0700 | 
| commit | baa5c00e59cd1736818a49f27990028365c379c1 (patch) | |
| tree | 7508c946240d02b7b5d56f12b91c982c1cf73db1 | |
| parent | Fix Weak Scent copying from Terrifying. (diff) | |
| download | cataclysm-dda-mod_vampire-stuff-redone-baa5c00e59cd1736818a49f27990028365c379c1.tar.xz | |
Fix errors in NPC permanently refusing to blood.
| -rw-r--r-- | vamp_stuff/Modification_Files/Mutation/v_dialogue_traits.json | 2 | ||||
| -rw-r--r-- | vamp_stuff/Modification_Files/NPC/v_npc_responds/blood-drinking.json | 3 | 
2 files changed, 3 insertions, 2 deletions
diff --git a/vamp_stuff/Modification_Files/Mutation/v_dialogue_traits.json b/vamp_stuff/Modification_Files/Mutation/v_dialogue_traits.json index 250f0aa..19de4fe 100644 --- a/vamp_stuff/Modification_Files/Mutation/v_dialogue_traits.json +++ b/vamp_stuff/Modification_Files/Mutation/v_dialogue_traits.json @@ -611,7 +611,7 @@    {      "type": "mutation",      "id": "VAMP_BLOODDRINK_REFUSED", -    "name": { "str": "Refuses To Give Blood." }, +    "name": { "str": "Refuses To Give Blood" },      "points": -1,      "description": "You refuse to allow a vampire to feed on you.",      "valid": false, diff --git a/vamp_stuff/Modification_Files/NPC/v_npc_responds/blood-drinking.json b/vamp_stuff/Modification_Files/NPC/v_npc_responds/blood-drinking.json index 8b81067..a67eb45 100644 --- a/vamp_stuff/Modification_Files/NPC/v_npc_responds/blood-drinking.json +++ b/vamp_stuff/Modification_Files/NPC/v_npc_responds/blood-drinking.json @@ -114,7 +114,8 @@                { "npc_has_any_trait": [                  "VAMP_BLOODDOLL",                  "THRESH_VAMP", -                "VAMP_GHOUL" +                "VAMP_GHOUL", +                "VAMP_BLOODDRINK_REFUSED"                ] }              },              { "npc_has_any_trait": [  | 
