Differences From Artifact [4d3cea5840]:
- File potions.lua — part of check-in [58edda50fc] at 2021-10-27 13:42:02 on branch trunk — add distiller, remove old extract recipes (user: lexi, size: 10041) [annotate] [blame] [check-ins using]
To Artifact [caa667dc69]:
- File potions.lua — part of check-in [032f54d1d5] at 2024-03-17 00:35:03 on branch trunk — bugfixes (user: lexi, size: 10041) [annotate] [blame] [check-ins using]
195 195 local ret = ItemStack("vessels:glass_bottle") 196 196 if stack:is_empty() then stack = ret else 197 197 if user:get_inventory():room_for_item('main',ret) then 198 198 user:get_inventory():add_item('main',ret) 199 199 else 200 - minetest.add_item(user.get_pos(), ret) 200 + minetest.add_item(user:get_pos(), ret) 201 201 end 202 202 end 203 203 return stack 204 204 end 205 205 }