[bug] fix plurals changes affecting base pronoun

This commit is contained in:
Avris 2020-11-15 10:04:00 +01:00
parent 796debadbc
commit d3fde67b35
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ export class Pronoun {
} }
clone() { clone() {
return new Pronoun(this.canonicalName, this.description, this.normative, clone(this.morphemes), this.plural, this.pluralHonorific); return new Pronoun(this.canonicalName, this.description, this.normative, clone(this.morphemes), [...this.plural], [...this.pluralHonorific]);
} }
equals(other) { equals(other) {