Fix TFT damage skins using the wrong path

This commit is contained in:
Blossomi Shymae
2024-10-12 16:08:04 -05:00
parent 7a5a7fb0bc
commit 655927591c
2 changed files with 3 additions and 3 deletions

View File

@@ -521,7 +521,7 @@ export class TftDamageSkin extends CommunityDragonObject {
this.level = json.level;
}
getLoadoutsIcon(version: string): string {
return this.resolveGamePath({path: this.loadoutsIcon, version: version});
getLoadoutsIcon(args: LocaleVersionArgs): string {
return this.resolveClientPath({path: this.loadoutsIcon, args: args});
}
}