Differences From
Artifact [4b624880ad]:
38 38 minetest.register_node(keg.id, {
39 39 description = keg.name;
40 40 drawtype = 'mesh';
41 41 mesh = keg.model;
42 42 sunlight_propagates = true;
43 43 paramtype = 'light';
44 44 paramtype2 = 'facedir';
45 - groups = { choppy = 2; sorcery_container = 2; attached_node = keg.atch }; -- 2=liquid
45 + groups = { choppy = 2; sorcery_container = 2; sorcery_tech = 1; attached_node = keg.atch }; -- 2=liquid
46 46 tiles = {
47 47 'default_bronze_block.png';
48 48 'default_wood.png';
49 49 'default_steel_block.png';
50 50 };
51 51 selection_box = hitbox(keg.ofs or 0);
52 52 collision_box = keg.cb or hitbox(keg.ofs or 0);