Fix acidic compound creation when right clicking water

This commit is contained in:
Awkanimus 2023-01-09 19:01:13 -05:00
parent cfca4304c0
commit 88d40fb89d
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ minetest.register_craftitem("elepower_dynamics:acidic_compound", {
local pos = pointed_thing.under
local node = minetest.get_node(pos)
if node.name ~= epi.water_source then
if node.name ~= epr.water_source then
return itemstack
end