13 lines
377 B
Lua
13 lines
377 B
Lua
-- LUALOCALS < ---------------------------------------------------------
|
|
local nodecore
|
|
= nodecore
|
|
-- LUALOCALS > ---------------------------------------------------------
|
|
|
|
nodecore.register_playerstep({
|
|
label = "inventory requires interact",
|
|
action = function(player)
|
|
if nodecore.interact(player) then return end
|
|
return nodecore.inventory_dump(player)
|
|
end
|
|
})
|