From d8c59e0e8bbebdab4fe06ec4fc203fb8eb27ce5a Mon Sep 17 00:00:00 2001 From: cora Date: Fri, 19 Nov 2021 17:42:37 +0100 Subject: [PATCH] remove swiftness from egapps The minetest world is already so small that you can reach world border from spawn in about 2 hours. I think the regen and fire resistance are good enough to make them special. --- mods/ITEMS/mcl_core/craftitems.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ITEMS/mcl_core/craftitems.lua b/mods/ITEMS/mcl_core/craftitems.lua index fc84c50f5..0fb92fcb2 100644 --- a/mods/ITEMS/mcl_core/craftitems.lua +++ b/mods/ITEMS/mcl_core/craftitems.lua @@ -163,7 +163,7 @@ local function eat_gapple(itemstack, placer, pointed_thing) mcl_potions.fire_resistance_func(placer, 1, 300) mcl_potions.leaping_func(placer, 1, 300) end - mcl_potions.swiftness_func(placer, absorbtion_factor, 120) -- TODO: Absorbtion + -- TODO: Absorbtion mcl_potions.regeneration_func(placer, 2, regen_duration) return gapple_hunger_restore(itemstack, placer, pointed_thing) end