{# NPCs Accordion Content Shows NPCs at current location with click to chat #} {% if npcs %}
{% for npc in npcs %}
{{ npc.name }}
{{ npc.role }}
{{ npc.appearance }}
{% if npc.tags %}
{% for tag in npc.tags %} {{ tag }} {% endfor %}
{% endif %}
{% endfor %}
{% else %}
No NPCs at this location.
{% endif %}