aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfusion32 <marcopuzziello@gmail.com>2025-08-17 01:38:06 -0300
committerfusion32 <marcopuzziello@gmail.com>2025-08-17 01:38:06 -0300
commit6b72cd1ebfc0af6804e8a6351c49c194a8f8532f (patch)
treeb74a2a09ac20e672785b6af1cb5f053886af6c22
parent095c9e7a5b685323129ce157411f376c9fabfd80 (diff)
downloadweb-6b72cd1ebfc0af6804e8a6351c49c194a8f8532f.tar.gz
web-6b72cd1ebfc0af6804e8a6351c49c194a8f8532f.zip
fix online list
-rw-r--r--templates/world_info.tmpl8
1 files changed, 0 insertions, 8 deletions
diff --git a/templates/world_info.tmpl b/templates/world_info.tmpl
index c0f9c24..578a0f7 100644
--- a/templates/world_info.tmpl
+++ b/templates/world_info.tmpl
@@ -38,20 +38,12 @@
<th>Name</th>
<th>Level</th>
<th>Vocation</th>
- <th>World</th>
- <th>Status</th>
</tr>
{{range .OnlineCharacters}}
<tr>
<td><a href="/character?name={{.Name}}">{{.Name}}</a></td>
<td>{{or .Level 1}}</td>
<td>{{or .Profession "None"}}</td>
- <td>{{.World}}</td>
- {{if .Online}}
- <td style="color: #1A1;">Online</td>
- {{else}}
- <td style="color: #A11;">Offline</td>
- {{end}}
</tr>
{{end}}
</table>