53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
'default_wood.png';
'default_steel_block.png';
};
selection_box = hitbox(keg.ofs or 0);
collision_box = keg.cb or hitbox(keg.ofs or 0);
_sorcery = {
recipe = {
canonical = constants.keg_recipe;
};
};
drop = {
-- preserve_metadata will not work without this!
max_items = 1;
items = {
{ items = { keg.id } };
|
|
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
'default_wood.png';
'default_steel_block.png';
};
selection_box = hitbox(keg.ofs or 0);
collision_box = keg.cb or hitbox(keg.ofs or 0);
_sorcery = {
recipe = {
canonical = { craft = constants.keg_recipe; };
};
};
drop = {
-- preserve_metadata will not work without this!
max_items = 1;
items = {
{ items = { keg.id } };
|