1
0
mirror of https://github.com/lexogrine/dota2-react-hud.git synced 2025-12-10 01:52:49 +01:00

fixed animated asset url

This commit is contained in:
Hubert Walczak 2023-06-06 12:15:58 +02:00
parent e422cd3fc9
commit fd7e4b0d3c
No known key found for this signature in database
GPG Key ID: 17BB1C9355357860

View File

@ -22,7 +22,7 @@ export const getAssetURL = (
) => {
if (!asset) return "";
if (assetType === "heroes_animated") {
return `${apiUrl}static/dota2/heroes/animated/${asset}.webm`;
return `${apiUrl}static/dota2/heroes/animated/${asset.startsWith("npc_dota_hero_")? asset : `npc_dota_hero_${asset}`}.webm`;
}
if (assetType === "heroes_icons") {
return `${apiUrl}static/dota2/heroes/icons/${asset}.png`;