From 2a6f75fde5d28cfc1bf74f756ee683bb0cd2e5b6 Mon Sep 17 00:00:00 2001 From: BlossomiShymae <87099578+BlossomiShymae@users.noreply.github.com> Date: Thu, 2 May 2024 11:23:07 -0500 Subject: [PATCH] Use client path for summoner emotes --- core/models.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/models.ts b/core/models.ts index 4357789..3b1a7c7 100644 --- a/core/models.ts +++ b/core/models.ts @@ -207,7 +207,7 @@ export class SummonerEmote extends CommunityDragonObject { } getInventoryIcon(version: string): string { - return this.resolveGamePath({path: this.inventoryIcon, version: version}).replace("inventory", "vfx"); + return this.resolveClientPath({path: this.inventoryIcon, args: {locale: "default", version: version}}); } }