1
0
Fork 0
mirror of https://github.com/bra1n/townsquare.git synced 2025-04-04 22:24:36 +00:00

Merge pull request from bra1n/129_bug_remove_characters_removing_pronouns

Fixes Issue  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

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: [] });
}