Differences From Artifact [c06011384f]:
- File infuser.lua — part of check-in [956134c50b] at 2020-08-11 21:39:39 on branch trunk — initial commit (user: lexi, size: 7418) [annotate] [blame] [check-ins using]
To Artifact [3997cbe28f]:
- File infuser.lua — part of check-in [f7f6898cbd] at 2020-08-21 11:52:17 on branch trunk — add force field emitters, generators, rework leyline distribution algorithm, add utility function for automatically dumping out inventories when an item is dug, add draconium and tyrannium alloys (tentatively), various fixes (user: lexi, size: 7470) [annotate] [blame] [check-ins using]
194 194 end 195 195 196 196 minetest.register_node("sorcery:infuser", { 197 197 description = "Infuser"; 198 198 drawtype = "mesh"; 199 199 mesh = "infuser.obj"; 200 200 paramtype2 = "facedir"; 201 + after_dig_node = sorcery.lib.node.purge_container; 201 202 tiles = { -- FIXME 202 203 "default_stone.png", 203 204 "default_copper_block.png", 204 205 "default_steel_block.png", 205 206 "default_bronze_block.png", 206 207 "default_tin_block.png", 207 208 };