1
0
mirror of https://git.ngram.ca/OpenJam/rc-servers synced 2026-08-23 23:08:52 +00:00

Implement basic chat functionality

This commit is contained in:
NGnius (Graham)
2025-04-14 21:17:41 -04:00
parent 4d2ddaeafb
commit 792a6362e3
37 changed files with 1119 additions and 34 deletions

View File

@@ -0,0 +1,18 @@
{
"commands": [
{
"regex": "\\?online",
"op": {
"type": "BuiltIn",
"built_in": "OnlineUsers"
}
},
{
"regex": "\\?users",
"op": {
"type": "BuiltIn",
"built_in": "TotalUsers"
}
}
]
}

View File

@@ -14416,6 +14416,13 @@
]
}
},
"chat": {
"public_channels": [
"main",
"sys",
"jam_club"
]
},
"settings": {
"banners": [
{
@@ -14476,4 +14483,4 @@
}
]
}
}
}