Merge pull request 'Add temporary warning debug to spawning algorithm output' (#1601) from jordan4ibanez/MineClone2:mineclone5 into mineclone5

Reviewed-on: https://git.minetest.land/MineClone2/MineClone2/pulls/1601
This commit is contained in:
jordan4ibanez 2021-04-22 21:57:41 +00:00
commit 20abb4e864
1 changed files with 2 additions and 0 deletions

View File

@ -659,10 +659,12 @@ if mobs_spawn then
--found a mob, exit out of loop
if not skip then
minetest.log("warning", "found mob:"..temp_def.name)
--print("found mob:"..temp_def.name)
mob_def = table_copy(temp_def)
break
else
minetest.log("warning", "deleting temp index "..temp_index)
--print("deleting temp index")
table_remove(mob_library_worker_table, temp_index)
end