Merge pull request #130 from bra1n/129_bug_remove_characters_removing_pronouns

Fixes Issue #129 Stopping clearing all characters as story teller, clearing pronouns
This commit is contained in:
Steffen 2021-03-13 13:38:14 +01:00 committed by GitHub
commit 915ae1bb44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -80,10 +80,11 @@ const actions = {
return player;
});
} else {
players = state.players.map(({ name, id }) => ({
players = state.players.map(({ name, id, pronouns }) => ({
...NEWPLAYER,
name,
id
id,
pronouns
}));
commit("setFabled", { fabled: [] });
}