mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-11 17:51:04 +00:00
Fix the player information version_string return value (#8616)
* Give more player information * Correct lua_api.txt * Correct keys in lua_api.txt * Improve Code * Only Bugfix+ser_vers * Correct doc * Fix double
This commit is contained in:
parent
ec3224dce2
commit
37f771a95b
2 changed files with 2 additions and 1 deletions
|
@ -1283,7 +1283,7 @@ bool Server::getClientInfo(
|
|||
*major = client->getMajor();
|
||||
*minor = client->getMinor();
|
||||
*patch = client->getPatch();
|
||||
*vers_string = client->getPatch();
|
||||
*vers_string = client->getFull();
|
||||
|
||||
m_clients.unlock();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue