mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-03-15 04:11:24 +00:00
Override builtin item entity the portable way
This commit is contained in:
parent
fb18a5b20d
commit
bd64188ee5
1 changed files with 2 additions and 2 deletions
|
@ -39,8 +39,8 @@ local item = {
|
|||
})
|
||||
end,
|
||||
|
||||
on_step = function(self, dtime)
|
||||
builtin_item.on_step(self, dtime)
|
||||
on_step = function(self, dtime, ...)
|
||||
builtin_item.on_step(self, dtime, ...)
|
||||
|
||||
if self.flammable then
|
||||
-- flammable, check for igniters
|
||||
|
|
Loading…
Add table
Reference in a new issue