diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-02-02 17:16:35 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-02-02 17:16:35 +0100 |
commit | d6af6b353d02e8d164ca888f1e0c79370214b9cc (patch) | |
tree | 86dae977699ea27e7846c9a412b372aabd29d11e /source | |
parent | Debuggers plugin dumps entire API into a file, API.txt. Enabled by default. (diff) | |
download | cuberite-d6af6b353d02e8d164ca888f1e0c79370214b9cc.tar cuberite-d6af6b353d02e8d164ca888f1e0c79370214b9cc.tar.gz cuberite-d6af6b353d02e8d164ca888f1e0c79370214b9cc.tar.bz2 cuberite-d6af6b353d02e8d164ca888f1e0c79370214b9cc.tar.lz cuberite-d6af6b353d02e8d164ca888f1e0c79370214b9cc.tar.xz cuberite-d6af6b353d02e8d164ca888f1e0c79370214b9cc.tar.zst cuberite-d6af6b353d02e8d164ca888f1e0c79370214b9cc.zip |
Diffstat (limited to '')
-rw-r--r-- | source/ManualBindings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/ManualBindings.cpp b/source/ManualBindings.cpp index 8dc55a54c..5b2b6ff9e 100644 --- a/source/ManualBindings.cpp +++ b/source/ManualBindings.cpp @@ -637,7 +637,7 @@ static int tolua_cPluginManager_BindCommand(lua_State * L) int FnRef = luaL_ref(L, LUA_REGISTRYINDEX); // Store function reference if (FnRef == LUA_REFNIL) { - LOGERROR("\"BindCommand\": Cannot create a function reference. Command \"%s\" not bound.", Command); + LOGERROR("\"BindCommand\": Cannot create a function reference. Command \"%s\" not bound.", Command.c_str()); return 0; } |