forked from Mineclonia/Mineclonia
Correct indentation
This commit is contained in:
parent
d6c7c9dcd0
commit
5637701c4b
|
@ -59,15 +59,14 @@ local function register_potion(def)
|
||||||
local on_use = nil
|
local on_use = nil
|
||||||
|
|
||||||
if def.on_use then
|
if def.on_use then
|
||||||
|
|
||||||
on_use = function (itemstack, user, pointed_thing)
|
on_use = function (itemstack, user, pointed_thing)
|
||||||
|
|
||||||
def.on_use(user, def.effect, dur)
|
def.on_use(user, def.effect, dur)
|
||||||
minetest.do_item_eat(0, "mcl_potions:glass_bottle", itemstack, user, pointed_thing)
|
minetest.do_item_eat(0, "mcl_potions:glass_bottle", itemstack, user, pointed_thing)
|
||||||
mcl_potions._use_potion(itemstack, user, def.color)
|
mcl_potions._use_potion(itemstack, user, def.color)
|
||||||
|
|
||||||
return itemstack
|
return itemstack
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local function get_tt(tt, effect, dur)
|
local function get_tt(tt, effect, dur)
|
||||||
|
|
Loading…
Reference in New Issue