New source found from dndbeyond.com

This commit is contained in:
2026-07-08 01:00:09 -07:00
parent 9a983a6d7b
commit dcefa0d2f2
2865 changed files with 222467 additions and 49053 deletions
@@ -134,7 +134,7 @@ const initialPartyInfoState = {
name: null,
publicNotes: null,
partyInventory: [],
sharingState: 0,
partyRestrictions: [],
modifiers: null,
spells: null,
};
@@ -187,6 +187,7 @@ export const initialState = {
},
partyInfo: null,
campaignSettings: [],
longRestText: null,
};
function serviceData(state = initialState, action) {
var _a;
@@ -309,6 +310,9 @@ function serviceData(state = initialState, action) {
case actionTypes.CAMPAIGN_SETTINGS_SET_COMMIT: {
return Object.assign(Object.assign({}, state), { campaignSettings: action.payload });
}
case actionTypes.LONG_REST_TEXT_SET: {
return Object.assign(Object.assign({}, state), { longRestText: action.payload });
}
default:
// not implemented
}