Fix server config help strings
This commit is contained in:
parent
249f715c87
commit
e9b5fb2c81
@ -159,10 +159,10 @@ The current server configuration xml looks like this:
|
|||||||
<!-- Specified in millisecond for maximum time waiting in sqlite3_busy_handler. You may need a higher value if your database is shared by many servers or having a slow hard disk. -->
|
<!-- Specified in millisecond for maximum time waiting in sqlite3_busy_handler. You may need a higher value if your database is shared by many servers or having a slow hard disk. -->
|
||||||
<database-timeout value="1000" />
|
<database-timeout value="1000" />
|
||||||
|
|
||||||
<!-- IPv4 ban list table name, you need to create the table first, see NETWORKING.md for details, empty to disable. This table can be shared for all servers if you use the same name. STK can auto kick active peer from ban list (update per minute) whichallows live kicking peer by inserting record to database. -->
|
<!-- IPv4 ban list table name, you need to create the table first, see NETWORKING.md for details, empty to disable. This table can be shared for all servers if you use the same name. STK can auto kick active peer from ban list (update per minute) which allows live kicking peer by inserting record to database. -->
|
||||||
<ip-ban-table value="ip_ban" />
|
<ip-ban-table value="ip_ban" />
|
||||||
|
|
||||||
<!-- IPv6 ban list table name, you need to create the table first, see NETWORKING.md for details, empty to disable. This table can be shared for all servers if you use the same name. STK can auto kick active peer from ban list (update per minute) whichallows live kicking peer by inserting record to database. -->
|
<!-- IPv6 ban list table name, you need to create the table first, see NETWORKING.md for details, empty to disable. This table can be shared for all servers if you use the same name. STK can auto kick active peer from ban list (update per minute) which allows live kicking peer by inserting record to database. -->
|
||||||
<ipv6-ban-table value="ipv6_ban" />
|
<ipv6-ban-table value="ipv6_ban" />
|
||||||
|
|
||||||
<!-- Online ID ban list table name, you need to create the table first, see NETWORKING.md for details, empty to disable. This table can be shared for all servers if you use the same name. STK can auto kick active peer from ban list (update per minute) which allows live kicking peer by inserting record to database. -->
|
<!-- Online ID ban list table name, you need to create the table first, see NETWORKING.md for details, empty to disable. This table can be shared for all servers if you use the same name. STK can auto kick active peer from ban list (update per minute) which allows live kicking peer by inserting record to database. -->
|
||||||
|
@ -363,8 +363,8 @@ namespace ServerConfig
|
|||||||
"IPv6 ban list table name, you need to create the table first, see "
|
"IPv6 ban list table name, you need to create the table first, see "
|
||||||
"NETWORKING.md for details, empty to disable. "
|
"NETWORKING.md for details, empty to disable. "
|
||||||
"This table can be shared for all servers if you use the same name. "
|
"This table can be shared for all servers if you use the same name. "
|
||||||
"STK can auto kick active peer from ban list (update per minute) which"
|
"STK can auto kick active peer from ban list (update per minute) "
|
||||||
"allows live kicking peer by inserting record to database."));
|
"which allows live kicking peer by inserting record to database."));
|
||||||
|
|
||||||
SERVER_CFG_PREFIX StringServerConfigParam m_online_id_ban_table
|
SERVER_CFG_PREFIX StringServerConfigParam m_online_id_ban_table
|
||||||
SERVER_CFG_DEFAULT(StringServerConfigParam("online_id_ban",
|
SERVER_CFG_DEFAULT(StringServerConfigParam("online_id_ban",
|
||||||
@ -372,8 +372,8 @@ namespace ServerConfig
|
|||||||
"Online ID ban list table name, you need to create the table first, "
|
"Online ID ban list table name, you need to create the table first, "
|
||||||
"see NETWORKING.md for details, empty to disable. "
|
"see NETWORKING.md for details, empty to disable. "
|
||||||
"This table can be shared for all servers if you use the same name. "
|
"This table can be shared for all servers if you use the same name. "
|
||||||
"STK can auto kick active peer from ban list (update per minute) which"
|
"STK can auto kick active peer from ban list (update per minute) "
|
||||||
"allows live kicking peer by inserting record to database."));
|
"which allows live kicking peer by inserting record to database."));
|
||||||
|
|
||||||
SERVER_CFG_PREFIX StringServerConfigParam m_player_reports_table
|
SERVER_CFG_PREFIX StringServerConfigParam m_player_reports_table
|
||||||
SERVER_CFG_DEFAULT(StringServerConfigParam("player_reports",
|
SERVER_CFG_DEFAULT(StringServerConfigParam("player_reports",
|
||||||
|
Loading…
Reference in New Issue
Block a user