From 9af71cd970a835aee0dc03031f35e2e1eb56a018 Mon Sep 17 00:00:00 2001 From: Drew Miller Date: Sun, 5 Jul 2026 15:55:28 -0700 Subject: [PATCH] Fix srd-2024 Fighter and Monk saving_throws to match their Core Traits tables The structured saving_throws fields for the 2024 Fighter and Monk contradict the classes' own core-traits feature tables (and the SRD 5.2 Core Traits tables): - Fighter: [dex, str] -> [con, str] ("Saving Throw Proficiencies: Strength and Constitution") - Monk: [dex, wis] -> [dex, str] ("Saving Throw Proficiencies: Strength and Dexterity") The other ten srd-2024 classes' fields already match their prose. --- data/v2/wizards-of-the-coast/srd-2024/CharacterClass.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/v2/wizards-of-the-coast/srd-2024/CharacterClass.json b/data/v2/wizards-of-the-coast/srd-2024/CharacterClass.json index f81bf072..d5b1a345 100644 --- a/data/v2/wizards-of-the-coast/srd-2024/CharacterClass.json +++ b/data/v2/wizards-of-the-coast/srd-2024/CharacterClass.json @@ -155,7 +155,7 @@ "name": "Fighter", "primary_abilities": [], "saving_throws": [ - "dex", + "con", "str" ], "subclass_of": null @@ -200,7 +200,7 @@ "primary_abilities": [], "saving_throws": [ "dex", - "wis" + "str" ], "subclass_of": null },