forked from rDrama/rDrama
1
0
Fork 0

fix house founder bug

master
Aevann 2022-12-30 15:35:04 +02:00
parent 0bbe5d5ddd
commit a62168a7a6
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@
<div class="input-group mb2">
<select {% if v.coins < cost and v.marseybux < cost or v.bite %}disabled{% endif %} autocomplete="off" id='house' class="form-control setting_reload" form="profile-settings" name="house" data-nonce="{{g.nonce}}">
{% for entry in HOUSES %}
<option value="{{entry}}" {% if v.house == entry %} selected {% endif %}>
<option value="{{entry}}" {% if v.house.startswith(entry) %} selected {% endif %}>
{{entry}}
</option>
{% endfor %}