mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-27 09:49:22 +02:00
* configurable if deleted characters from account should be listed (this closes #49)
This commit is contained in:
parent
915e9409dc
commit
2333180c50
@ -212,7 +212,8 @@ $config = array(
|
|||||||
'quests' => true,
|
'quests' => true,
|
||||||
'skills' => true,
|
'skills' => true,
|
||||||
'equipment' => true,
|
'equipment' => true,
|
||||||
'frags' => false
|
'frags' => false,
|
||||||
|
'deleted' => false, // should deleted characters from same account be still listed on the list of characters? When enabled it will show that character is "[DELETED]"
|
||||||
),
|
),
|
||||||
'quests' => array(), // quests list (displayed in character view), name => storage
|
'quests' => array(), // quests list (displayed in character view), name => storage
|
||||||
'signature_enabled' => true,
|
'signature_enabled' => true,
|
||||||
|
@ -380,7 +380,7 @@
|
|||||||
</tr>
|
</tr>
|
||||||
{% set i = 0 %}
|
{% set i = 0 %}
|
||||||
{% for player in account_players %}
|
{% for player in account_players %}
|
||||||
{% if not player.isHidden() %}
|
{% if not player.isHidden() and (config('characters')['deleted'] or not player.isDeleted()) %}
|
||||||
{% set i = i + 1 %}
|
{% set i = i + 1 %}
|
||||||
<tr bgcolor="{{ getStyle(i) }}">
|
<tr bgcolor="{{ getStyle(i) }}">
|
||||||
<td>
|
<td>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user