Mod API Adjustment, Fix unknown item in dungeon chests

BadToad2000/master
Brandon 2016-07-09 20:12:07 -05:00
parent 8072448074
commit 6be7059a43
2 changed files with 2 additions and 2 deletions

View File

@ -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})

View File

@ -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