Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Override builtin item entity the portable way
- Loading branch information
Showing
with
2 additions
and
2 deletions.
-
+2
−2
mods/default/item_entity.lua
|
@@ -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 |
|
|