Differences From Artifact [7838002de4]:
- File keg.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: 6180) [annotate] [blame] [check-ins using]
To Artifact [5c653d450d]:
- File keg.lua — part of check-in [c71731cf58] at 2021-07-03 02:25:42 on branch trunk — many bug fixers, some minor refactoring, allow non-drinkable potions to be empowered in various ways, allow gods to be petitioned for recipes (next up: cookbooks!) (user: lexi, size: 6220) [annotate] [blame] [check-ins using]
185 185 }) 186 186 187 187 minetest.register_craft { 188 188 output = "sorcery:keg"; 189 189 recipe = { 190 190 {'','screwdriver:screwdriver',''}; 191 191 {'sorcery:screw_bronze', 'sorcery:tap', 'sorcery:screw_bronze'}; 192 - {'', 'xdecor:barrel', ''}; 192 + {'sorcery:screw_bronze', 'xdecor:barrel', 'sorcery:screw_bronze'}; 193 193 }; 194 194 replacements = { 195 195 {'screwdriver:screwdriver', 'screwdriver:screwdriver'}; 196 196 }; 197 197 }