File tree 1 file changed +3
-9
lines changed
1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -139,9 +139,7 @@ if minetest.setting_getbool("enable_lavacooling") ~= false then
139
139
interval = 1 ,
140
140
chance = 2 ,
141
141
catch_up = false ,
142
- action = function (...)
143
- default .cool_lava (... )
144
- end ,
142
+ action = default .cool_lava ,
145
143
})
146
144
end
147
145
@@ -224,9 +222,7 @@ minetest.register_abm({
224
222
neighbors = {" group:sand" },
225
223
interval = 12 ,
226
224
chance = 83 ,
227
- action = function (...)
228
- default .grow_cactus (... )
229
- end
225
+ action = default .grow_cactus
230
226
})
231
227
232
228
minetest .register_abm ({
@@ -235,9 +231,7 @@ minetest.register_abm({
235
231
neighbors = {" default:dirt" , " default:dirt_with_grass" },
236
232
interval = 14 ,
237
233
chance = 71 ,
238
- action = function (...)
239
- default .grow_papyrus (... )
240
- end
234
+ action = default .grow_papyrus
241
235
})
242
236
243
237
You can’t perform that action at this time.
0 commit comments