V1.2 REL, Removed Dragon's Breath
This commit is contained in:
parent
b30b3c9002
commit
67c47334e3
@ -1,4 +1,4 @@
|
|||||||
# mcl_stackpotions v1.0
|
# mcl_stackpotions v1.2
|
||||||
Provides a stackable potion (just place a normal potion in the crafting table to get a stacked version)
|
Provides a stackable potion (just place a normal potion in the crafting table to get a stacked version)
|
||||||
|
|
||||||
## How it works
|
## How it works
|
||||||
@ -6,3 +6,4 @@ Provides a stackable potion (just place a normal potion in the crafting table to
|
|||||||
Basically I've overloaded the default mcl_potions.register_potion so it takes my setting for max stack size. (This is done as a independent function separate from mcl_potions, I also added a custom convert function which takes potions and makes the stacked equal, no reverse conversion as stackable and non-stackable is a conflict)
|
Basically I've overloaded the default mcl_potions.register_potion so it takes my setting for max stack size. (This is done as a independent function separate from mcl_potions, I also added a custom convert function which takes potions and makes the stacked equal, no reverse conversion as stackable and non-stackable is a conflict)
|
||||||
|
|
||||||
> This basically means I need to keep updating the mod of any new mcl_potion updates. (currently will be done manually)
|
> This basically means I need to keep updating the mod of any new mcl_potion updates. (currently will be done manually)
|
||||||
|
|
||||||
|
2
init.lua
2
init.lua
@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
stackpot = {
|
stackpot = {
|
||||||
VERSION = "1.1"
|
VERSION = "1.2"
|
||||||
}
|
}
|
||||||
|
|
||||||
stackpot.log = function (msg)
|
stackpot.log = function (msg)
|
||||||
|
@ -401,7 +401,6 @@ end
|
|||||||
-- ██████╔╝███████╗██║░░░░░██║██║░╚███║██║░░░██║░░░██║╚█████╔╝██║░╚███║██████╔╝
|
-- ██████╔╝███████╗██║░░░░░██║██║░╚███║██║░░░██║░░░██║╚█████╔╝██║░╚███║██████╔╝
|
||||||
-- ╚═════╝░╚══════╝╚═╝░░░░░╚═╝╚═╝░░╚══╝╚═╝░░░╚═╝░░░╚═╝░╚════╝░╚═╝░░╚══╝╚═════╝░
|
-- ╚═════╝░╚══════╝╚═╝░░░░░╚═╝╚═╝░░╚══╝╚═╝░░░╚═╝░░░╚═╝░╚════╝░╚═╝░░╚══╝╚═════╝░
|
||||||
|
|
||||||
|
|
||||||
local awkward_def = {
|
local awkward_def = {
|
||||||
name = "awkward",
|
name = "awkward",
|
||||||
description_potion = S("Awkward Potion"),
|
description_potion = S("Awkward Potion"),
|
||||||
@ -442,6 +441,7 @@ local thick_def = {
|
|||||||
on_use = minetest.item_eat(0, "mcl_potions:glass_bottle"),
|
on_use = minetest.item_eat(0, "mcl_potions:glass_bottle"),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
--[[
|
||||||
local dragon_breath_def = {
|
local dragon_breath_def = {
|
||||||
name = "dragon_breath",
|
name = "dragon_breath",
|
||||||
description = S("Dragon's Breath"),
|
description = S("Dragon's Breath"),
|
||||||
@ -455,6 +455,7 @@ local dragon_breath_def = {
|
|||||||
on_use = nil,
|
on_use = nil,
|
||||||
stack_max = 64,
|
stack_max = 64,
|
||||||
}
|
}
|
||||||
|
]]--
|
||||||
|
|
||||||
local healing_def = {
|
local healing_def = {
|
||||||
name = "healing",
|
name = "healing",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user