forked from MarseyWorld/MarseyWorld
master
parent
c81f974bc7
commit
30f71855f4
|
@ -229,7 +229,7 @@
|
|||
{% if c.treasure_amount and c.treasure_amount != '0' %}
|
||||
{% if c.treasure_amount.startswith('l') %}
|
||||
<img class="treasure" alt="treasure" src="/assets/images/treasure_tickets.webp" width="20" />
|
||||
<em>Found {{c.treasure_amount.replace('l', '')}} {'Lottershe' if SITE_NAME == 'rDrama' else 'Lottery'} Tickets!</em>
|
||||
<em>Found {{c.treasure_amount.replace('l', '')}} {{'Lottershe' if SITE_NAME == 'rDrama' else 'Lottery'}} Tickets!</em>
|
||||
{% elif '-' in c.treasure_amount %}
|
||||
<img class="treasure" alt="treasure" src="/assets/images/treasure_mimic.webp" width="20" />
|
||||
<em>A Mimic Ate {{c.treasure_amount.replace('-', '')}} Coins!</em>
|
||||
|
|
|
@ -86,7 +86,7 @@
|
|||
{% endif %}
|
||||
|
||||
{% if v and v.can_gamble and LOTTERY_ENABLED %}
|
||||
<span data-bs-toggle="tooltip" data-bs-placement="bottom" title={'Lottershe' if SITE_NAME == 'rDrama' else 'Lottery'}>
|
||||
<span data-bs-toggle="tooltip" data-bs-placement="bottom" title={{'Lottershe' if SITE_NAME == 'rDrama' else 'Lottery'}}>
|
||||
<a
|
||||
href="/lottery"
|
||||
class="mobile-nav-icon d-md-none">
|
||||
|
@ -139,7 +139,7 @@
|
|||
<span
|
||||
data-bs-toggle="tooltip"
|
||||
data-bs-placement="bottom"
|
||||
title={'Lottershe' if SITE_NAME == 'rDrama' else 'Lottery'}>
|
||||
title={{'Lottershe' if SITE_NAME == 'rDrama' else 'Lottery'}}>
|
||||
<a
|
||||
href="/lottery"
|
||||
class="nav-link">
|
||||
|
|
Loading…
Reference in New Issue