Fix not setting immune type for move type immunity

This commit is contained in:
Flashfyre 2024-03-10 10:16:49 -04:00
parent 20e9a1e761
commit bd9d2de0af
1 changed files with 2 additions and 0 deletions

View File

@ -381,6 +381,8 @@ export class StatusMoveTypeImmunityAttr extends MoveAttr {
constructor(immuneType: Type) { constructor(immuneType: Type) {
super(false); super(false);
this.immuneType = immuneType;
} }
} }