summaryrefslogtreecommitdiff
path: root/server/commands.go
diff options
context:
space:
mode:
authorraven <citrons@mondecitronne.com>2026-03-21 03:37:02 -0500
committerraven <citrons@mondecitronne.com>2026-03-21 03:37:02 -0500
commit6b20fd455a337d28f9847f87fc91177474356986 (patch)
tree615589d010bdfa5e56a15f719ee3d11adfad0f6f /server/commands.go
parent3f6a61d993d6c50135c3cefe3cf362390c4027d5 (diff)
console commands
Diffstat (limited to 'server/commands.go')
-rw-r--r--server/commands.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/commands.go b/server/commands.go
index 0b56aaf..8154b7b 100644
--- a/server/commands.go
+++ b/server/commands.go
@@ -110,7 +110,7 @@ var commands = map[string]commandHandler {
sort.Strings(usages)
ctx.sender.OnCommandOutput(ctx.server, "Available commands:")
for _, usage := range usages {
- ctx.sender.OnCommandOutput(ctx.server, "&7* &e" + usage)
+ ctx.sender.OnCommandOutput(ctx.server, "* " + usage)
}
return ""
}