Fix tag source linking

pull/20/head
Flashfyre 2024-03-29 15:43:36 -04:00
parent dff9a21a0b
commit fa7c1684f7
3 changed files with 6 additions and 1 deletions

View File

@ -250,6 +250,10 @@ export class InfatuatedTag extends BattlerTag {
pokemon.scene.queueMessage(getPokemonMessage(pokemon, ' got over\nits infatuation.'));
}
isSourceLinked(): boolean {
return true;
}
getDescriptor(): string {
return 'infatuation';
}

View File

@ -1,6 +1,7 @@
export const splashMessages = [
'Join the Discord!',
'Infinite Levels!',
'Everything Stacks!',
'Optional Save Scumming!',
'35 Biomes!',
'Open Source!',

View File

@ -1366,7 +1366,7 @@ export default abstract class Pokemon extends Phaser.GameObjects.Container {
}
removeTagsBySourceId(sourceId: integer): void {
this.findAndRemoveTags(t => t.sourceId === sourceId);
this.findAndRemoveTags(t => t.isSourceLinked() && t.sourceId === sourceId);
}
transferTagsBySourceId(sourceId: integer, newSourceId: integer): void {