From 6be7059a4349d05fcc6c110f8dee5711b6a40ca0 Mon Sep 17 00:00:00 2001 From: Brandon Date: Sat, 9 Jul 2016 20:12:07 -0500 Subject: [PATCH] Mod API Adjustment, Fix unknown item in dungeon chests --- mods/mg/dungeons.lua | 2 +- mods/mobs/api.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/mg/dungeons.lua b/mods/mg/dungeons.lua index 2db6395..fe5ffab 100644 --- a/mods/mg/dungeons.lua +++ b/mods/mg/dungeons.lua @@ -11,7 +11,7 @@ table.insert(dungeon_chest, { "default:mese", 15, 4 }) table.insert(dungeon_chest, { "default:diamondblock",10, 4 }) table.insert(dungeon_chest, { "potions:fly3", 50, 1}) table.insert(dungeon_chest, { "potions:bones", 70, 5}) -table.insert(dungeon_chest, { "potions:magid_replenish3", 60, 10}) +table.insert(dungeon_chest, { "potions:magic_replenish3", 60, 10}) table.insert(dungeon_chest, { "potions:antidote", 80, 10}) table.insert(dungeon_chest, { "farming_plus:bread", 80, 15}) table.insert(dungeon_chest, { "mobs:meat", 80, 5}) diff --git a/mods/mobs/api.lua b/mods/mobs/api.lua index f399aee..e08568b 100644 --- a/mods/mobs/api.lua +++ b/mods/mobs/api.lua @@ -3,7 +3,7 @@ mobs = {} dofile(minetest.get_modpath("mobs").."/step.lua") mobs.mob_list = { npc={}, barbarian={}, monster={}, animal={}, npc_special={}} -mobs.api_throttle = 20 -- limits the amount of intense operations that can happen per second +mobs.api_throttle = 99 -- limits the amount of intense operations that can happen per second mobs.api_icount = 0 mobs.api_timer = 0