Differences From Artifact [71f6a713cb]:
- File altar.lua — part of check-in [90e64c483c] at 2020-10-23 00:08:30 on branch trunk — fix some showstopping bugs, more amulet spells, add sound effects, improve teleportation visuals (user: lexi, size: 11208) [annotate] [blame] [check-ins using]
To Artifact [a7a1197203]:
- File altar.lua — part of check-in [01f4ba8ddc] at 2021-06-28 15:38:59 on branch trunk — more work on kegs and liquid, add taps and troughs for tapping trees and obtaining sap, add tree lore, add infuser module system, various tweaks, fix up bugged itemclass logic, add scaffold for crafting extension mechanism (user: lexi, size: 11198) [annotate] [blame] [check-ins using]
306 306 fixed = { {-0.5, -0.5, -0.5, 0.5, -0.09, 0.5} } 307 307 }; 308 308 collision_box = { 309 309 type = "fixed", 310 310 fixed = { {-0.5, -0.5, -0.5, 0.5, -0.09, 0.5} } 311 311 }; 312 312 313 - groups = {cracky = 2, oddly_breakable_by_hand = 2, sorcery_worship = 1}; 313 + groups = {cracky = 2, dig_immediate = 2, sorcery_worship = 1}; 314 314 315 315 on_construct = function(pos) 316 316 local meta = minetest.get_meta(pos) 317 317 local inv = meta:get_inventory() 318 318 inv:set_size('item', 1) 319 319 end; 320 320