[bug] fix plurals changes affecting base pronoun
This commit is contained in:
parent
796debadbc
commit
d3fde67b35
|
@ -143,7 +143,7 @@ export class Pronoun {
|
|||
}
|
||||
|
||||
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) {
|
||||
|
|
Reference in New Issue