diff options
author | est31 <MTest31@outlook.com> | 2015-08-31 13:26:40 +0200 |
---|---|---|
committer | est31 <MTest31@outlook.com> | 2015-08-31 13:31:29 +0200 |
commit | 2c637ce1c26145269b09c62afb451240a8def401 (patch) | |
tree | b21f88622a153189df0cff4cdb84ce7081569924 /src/clientiface.cpp | |
parent | 9c44aace4fce5f4b496201214d3215899f1481c3 (diff) | |
download | minetest-2c637ce1c26145269b09c62afb451240a8def401.tar.gz minetest-2c637ce1c26145269b09c62afb451240a8def401.tar.bz2 minetest-2c637ce1c26145269b09c62afb451240a8def401.zip |
Make ClientInterface::statenames consistent with the state enum again
Fixes minetest.get_player_information segfault due
to out of bounds access problems, when compiled as debug build.
Diffstat (limited to 'src/clientiface.cpp')
-rw-r--r-- | src/clientiface.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/clientiface.cpp b/src/clientiface.cpp index d4efe60ef..a6ab1ef41 100644 --- a/src/clientiface.cpp +++ b/src/clientiface.cpp @@ -38,10 +38,12 @@ const char *ClientInterface::statenames[] = { "Disconnecting", "Denied", "Created", - "InitSent", + "AwaitingInit2", + "HelloSent", "InitDone", "DefinitionsSent", - "Active" + "Active", + "SudoMode", }; |