diff options
author | Lejo <Lejo_1@web.de> | 2019-12-20 19:16:29 +0100 |
---|---|---|
committer | SmallJoker <SmallJoker@users.noreply.github.com> | 2019-12-20 19:16:29 +0100 |
commit | 37f771a95bd54e2072f07783df142da4a91e7bff (patch) | |
tree | 2f6fe149f6373e7cabdbf345f4e62bcee97f754a /src/server.cpp | |
parent | ec3224dce26fac8361f457514d4376d9753ee36b (diff) | |
download | minetest-37f771a95bd54e2072f07783df142da4a91e7bff.tar.gz minetest-37f771a95bd54e2072f07783df142da4a91e7bff.tar.bz2 minetest-37f771a95bd54e2072f07783df142da4a91e7bff.zip |
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
Diffstat (limited to 'src/server.cpp')
-rw-r--r-- | src/server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server.cpp b/src/server.cpp index 4090dd773..b74bba258 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -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(); |