Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
Emojigit committed Jun 6, 2024
1 parent 5d3ee86 commit 0f807e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions technic_chests/inventory.lua
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,9 @@ function technic.chests.log_fast_move(pos, name, change, items)
end
if change == "put" then
minetest.log("action", string.format("%s puts items into chest at %s: %s",
name, spos, table.concat(itemlist, ", "))
name, spos, table.concat(itemlist, ", ")))
elseif change == "take" then
minetest.log("action", string.format("%s takes items from chest at %s: %s",
name, spos, table.concat(itemlist, ", "))
name, spos, table.concat(itemlist, ", ")))
end
end

0 comments on commit 0f807e3

Please sign in to comment.