diff options
author | madmaxoft <madmaxoft@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-07-03 15:56:11 +0200 |
---|---|---|
committer | madmaxoft <madmaxoft@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-07-03 15:56:11 +0200 |
commit | e27a5db409fe1d71c42235609a9fe06020b6201b (patch) | |
tree | 28376a912b0f01f89c048f7eb25becf10ceb287c /source/Bindings.cpp | |
parent | Updated LimitWorld. (Patch by tonibm19) (diff) | |
download | cuberite-e27a5db409fe1d71c42235609a9fe06020b6201b.tar cuberite-e27a5db409fe1d71c42235609a9fe06020b6201b.tar.gz cuberite-e27a5db409fe1d71c42235609a9fe06020b6201b.tar.bz2 cuberite-e27a5db409fe1d71c42235609a9fe06020b6201b.tar.lz cuberite-e27a5db409fe1d71c42235609a9fe06020b6201b.tar.xz cuberite-e27a5db409fe1d71c42235609a9fe06020b6201b.tar.zst cuberite-e27a5db409fe1d71c42235609a9fe06020b6201b.zip |
Diffstat (limited to 'source/Bindings.cpp')
-rw-r--r-- | source/Bindings.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/Bindings.cpp b/source/Bindings.cpp index 63d414194..ed48a8563 100644 --- a/source/Bindings.cpp +++ b/source/Bindings.cpp @@ -12978,7 +12978,7 @@ static int tolua_AllToLua_cInventory_AddItems00(lua_State* tolua_S) if (!self) tolua_error(tolua_S,"invalid 'self' in function 'AddItems'", NULL); #endif { - int tolua_ret = (int) self->AddItems(*a_ItemStackList,a_AllowNewStacks); + int tolua_ret = (int) self->AddItems(*a_ItemStackList,a_AllowNewStacks,false); tolua_pushnumber(tolua_S,(lua_Number)tolua_ret); } } @@ -15821,7 +15821,7 @@ static int tolua_AllToLua_cItemGrid_AddItem00(lua_State* tolua_S) if (!self) tolua_error(tolua_S,"invalid 'self' in function 'AddItem'", NULL); #endif { - int tolua_ret = (int) self->AddItem(*a_ItemStack,a_AllowNewStacks); + int tolua_ret = (int) self->AddItem(*a_ItemStack,a_AllowNewStacks, false); tolua_pushnumber(tolua_S,(lua_Number)tolua_ret); } } |