Revert "Fix Redstone alias issue. Defined local variable "brew_output"."

This reverts commit 0959c15c34.
This commit is contained in:
bzoss 2020-06-08 17:38:02 -04:00
parent 0959c15c34
commit bff6518871
3 changed files with 4 additions and 5 deletions

View File

@ -134,7 +134,7 @@ local function brewing_stand_timer(pos, elapsed)
-- return 1
-- end
-- end
local brew_output = brewable(inv)
brew_output = brewable(inv)
if fuel ~= 0 and brew_output then
fuel_timer = fuel_timer + elapsed

View File

@ -2,5 +2,4 @@ mcl_core
mcl_farming
mcl_mobitems
mcl_fishing
mesecons
playerphysics

View File

@ -424,8 +424,8 @@ minetest.register_craftitem("mcl_potions:harming_2", {
minetest.register_craftitem("mcl_potions:night_vision", {
description = S("Night Vision Potion"),
_doc_items_longdesc = brewhelp,
wield_image = potion_image("#A0A0A0"),
inventory_image = potion_image("#A0A0A0"),
wield_image = "mcl_potions_night_vision.png",
inventory_image = "mcl_potions_night_vision.png",
groups = { brewitem = 1, food=0},
stack_max = 1,
})
@ -813,7 +813,7 @@ for i, potion in ipairs(potions) do
end
local mod_table = {
["mesecons:wire_00000000_off"] = extension_table,
["mesecons:redstone"] = extension_table,
["mcl_potions:fermented_spider_eye"] = inversion_table,
["mcl_nether:glowstone_dust"] = enhancement_table,
["mcl_mobitems:gunpowder"] = splash_table,