mirror of https://github.com/bra1n/townsquare.git
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:
commit
915ae1bb44
|
@ -80,10 +80,11 @@ const actions = {
|
||||||
return player;
|
return player;
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
players = state.players.map(({ name, id }) => ({
|
players = state.players.map(({ name, id, pronouns }) => ({
|
||||||
...NEWPLAYER,
|
...NEWPLAYER,
|
||||||
name,
|
name,
|
||||||
id
|
id,
|
||||||
|
pronouns
|
||||||
}));
|
}));
|
||||||
commit("setFabled", { fabled: [] });
|
commit("setFabled", { fabled: [] });
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue