Skip to content

Commit

Permalink
Code format - (Clang-format)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 16, 2023
1 parent 8858c2a commit 4e6126c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lua/functions/items/item_functions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,7 @@ int ItemFunctions::luaItemIsInsideDepot(lua_State* L) {

int ItemFunctions::luaItemIsContainer(lua_State* L) {
// item:isContainer()
auto const item = getUserdata<const Item>(L, 1);
const auto item = getUserdata<const Item>(L, 1);
if (!item) {
reportErrorFunc(getErrorDesc(LUA_ERROR_ITEM_NOT_FOUND));
pushBoolean(L, false);
Expand Down

0 comments on commit 4e6126c

Please sign in to comment.