forked from Kimapr/nodecore-skyblock
Fix random dust not packing
This commit is contained in:
parent
cf417265cf
commit
9606205069
|
@ -201,11 +201,11 @@ for _,dat in pairs({
|
||||||
do
|
do
|
||||||
|
|
||||||
nodecore.register_craft({
|
nodecore.register_craft({
|
||||||
label = "pack very random dust into cobble",
|
label = "pack random dust into cobble",
|
||||||
action = "pummel",
|
action = "pummel",
|
||||||
toolgroups = {thumpy = 2},
|
toolgroups = {thumpy = 3},
|
||||||
nodes = {
|
nodes = {
|
||||||
{match = {name = modname..":super_random_dust",count=16},replace = "nc_terrain:cobble"}
|
{match = {name = dat.name,count=16},replace = "nc_terrain:cobble"}
|
||||||
},
|
},
|
||||||
after = function(pos)
|
after = function(pos)
|
||||||
local chances = {}
|
local chances = {}
|
||||||
|
|
Loading…
Reference in New Issue