Skip to content

Commit

Permalink
Remove unnecessary leftover calls
Browse files Browse the repository at this point in the history
  • Loading branch information
minertestdude authored Oct 14, 2018
1 parent 69f8ca5 commit 8a882b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ if core.get_modpath("mcl_core") and mcl_core then -- means MineClone 2 is loaded

-- override default consumption of few MCL specific items to make drinking possible.

minetest.override_item("mcl_potions:potion_river_water", { on_secondary_use = thirsty.on_use(nil), minetest.item_eat(0, "mcl_potions:glass_bottle") } )
minetest.override_item("mcl_potions:potion_river_water", { on_secondary_use = thirsty.on_use(nil) } )

minetest.override_item("mcl_potions:potion_water", { on_secondary_use = thirsty.on_use(nil), minetest.item_eat(0, "mcl_potions:glass_bottle") } )
minetest.override_item("mcl_potions:potion_water", { on_secondary_use = thirsty.on_use(nil) } )

else -- fallback, assume default (MineTest Game) is loaded, otherwise it will error anyway here.
thristyitems.GROUP_WOOD = "group:wood" -- group wood in stock MT
Expand Down

0 comments on commit 8a882b6

Please sign in to comment.