forked from rDrama/rDrama
1
0
Fork 0

remove the stack limit and see what happens

master
Aevann 2023-07-14 14:35:59 +03:00
parent a84b2a7946
commit 8ca6e9d0da
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
<div id="awards-container" class="w-100 h-100">
{% macro stackable_award(award, src, alt) %}
<div class="stackable-container">
{% for i in range(min(p.award_count(award, v), 4)) %}
{% for i in range(p.award_count(award, v)) %}
<div class="{{award}}">
<img loading="lazy" alt="{{alt}}" src="{{src}}">
</div>