Overview
Comment: | fix keg group |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
a27bfa0fa70ceba1fdf5c604051ee25c |
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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
minetest.register_node(keg.id, { description = keg.name; drawtype = 'mesh'; mesh = keg.model; sunlight_propagates = true; paramtype = 'light'; paramtype2 = 'facedir'; groups = { choppy = 2; sorcery_container = 2; attached_node = keg.atch }; -- 2=liquid tiles = { 'default_bronze_block.png'; 'default_wood.png'; 'default_steel_block.png'; }; selection_box = hitbox(keg.ofs or 0); collision_box = keg.cb or hitbox(keg.ofs or 0); |
| |
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
minetest.register_node(keg.id, {
description = keg.name;
drawtype = 'mesh';
mesh = keg.model;
sunlight_propagates = true;
paramtype = 'light';
paramtype2 = 'facedir';
groups = { choppy = 2; sorcery_container = 2; sorcery_tech = 1; attached_node = keg.atch }; -- 2=liquid
tiles = {
'default_bronze_block.png';
'default_wood.png';
'default_steel_block.png';
};
selection_box = hitbox(keg.ofs or 0);
collision_box = keg.cb or hitbox(keg.ofs or 0);
|