sorcery  Check-in [a27bfa0fa7]

Overview
Comment:fix keg group
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: a27bfa0fa70ceba1fdf5c604051ee25c0cfdc335d5426fd945db34b31da4c058
User & Date: lexi on 2021-07-07 15:35:33
Other Links: manifest | tags
Context
2021-07-07
15:45
commit missing files check-in: 847fed70d7 user: lexi tags: trunk
15:35
fix keg group check-in: a27bfa0fa7 user: lexi tags: trunk
15:34
add mounted keg for shelving units, fix altar visuals check-in: aba5ad057a user: lexi tags: trunk
Changes

Modified keg.lua from [4b624880ad] to [f0cb8863c3].

    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);