diff options
author | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-04-11 14:16:13 +0200 |
---|---|---|
committer | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-04-11 14:16:13 +0200 |
commit | ae3fa2b6220b5e5f995c0b9c79db605cddcd5fb5 (patch) | |
tree | 2b0994ab5e9709562f4dec862456c51762986ae9 /source/ManualBindings.cpp | |
parent | Added error messages to socket closing error conditions for *nix (diff) | |
download | cuberite-ae3fa2b6220b5e5f995c0b9c79db605cddcd5fb5.tar cuberite-ae3fa2b6220b5e5f995c0b9c79db605cddcd5fb5.tar.gz cuberite-ae3fa2b6220b5e5f995c0b9c79db605cddcd5fb5.tar.bz2 cuberite-ae3fa2b6220b5e5f995c0b9c79db605cddcd5fb5.tar.lz cuberite-ae3fa2b6220b5e5f995c0b9c79db605cddcd5fb5.tar.xz cuberite-ae3fa2b6220b5e5f995c0b9c79db605cddcd5fb5.tar.zst cuberite-ae3fa2b6220b5e5f995c0b9c79db605cddcd5fb5.zip |
Diffstat (limited to 'source/ManualBindings.cpp')
-rw-r--r-- | source/ManualBindings.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source/ManualBindings.cpp b/source/ManualBindings.cpp index 34934eebd..ba3b99e14 100644 --- a/source/ManualBindings.cpp +++ b/source/ManualBindings.cpp @@ -13,6 +13,7 @@ #include "cPlayer.h"
#include "cWebAdmin.h"
#include "cStringMap.h"
+#include "cClientHandle.h"
#include "md5/md5.h"
@@ -507,6 +508,11 @@ void ManualBindings::Bind( lua_State* tolua_S ) tolua_variable(tolua_S,"FormData",tolua_get_HTTPRequest_FormData,0);
tolua_endmodule(tolua_S);
+ tolua_beginmodule(tolua_S,"cClientHandle");
+ tolua_constant(tolua_S,"MIN_VIEW_DISTANCE",cClientHandle::MIN_VIEW_DISTANCE);
+ tolua_constant(tolua_S,"MAX_VIEW_DISTANCE",cClientHandle::MAX_VIEW_DISTANCE);
+ tolua_endmodule(tolua_S);
+
tolua_function(tolua_S,"md5",tolua_md5);
tolua_endmodule(tolua_S);
|