Fix server config help strings

This commit is contained in:
Benau 2019-10-27 13:11:25 +08:00
parent 249f715c87
commit e9b5fb2c81
2 changed files with 6 additions and 6 deletions

View File

@ -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. -->
<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" />
<!-- 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" />
<!-- 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. -->

View File

@ -363,8 +363,8 @@ namespace ServerConfig
"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."));
"STK can auto kick active peer from ban list (update per minute) "
"which allows live kicking peer by inserting record to database."));
SERVER_CFG_PREFIX StringServerConfigParam m_online_id_ban_table
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, "
"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."));
"STK can auto kick active peer from ban list (update per minute) "
"which allows live kicking peer by inserting record to database."));
SERVER_CFG_PREFIX StringServerConfigParam m_player_reports_table
SERVER_CFG_DEFAULT(StringServerConfigParam("player_reports",