Use stable sprites (#15421)

This commit is contained in:
Phillip Thelen 2025-04-17 23:38:22 +02:00 committed by GitHub
parent 41bbc475ab
commit 0eaee9b1e4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -14,7 +14,7 @@
<div class="pet-background">
<Sprite
class="mount"
:image-name="`Mount_Icon_${mount.key}`"
:image-name="`stable_Mount_Icon_${mount.key}`"
/>
</div>
<h4 class="title">

View file

@ -19,7 +19,7 @@ export const QuestHelperMixin = {
case 'quests':
return `inventory_quest_scroll_${drop.key}`;
case 'mounts':
return `Mount_Icon_${drop.key}`;
return `stable_Mount_Icon_${drop.key}`;
case 'pets':
return `stable_Pet-${drop.key}`;
default: