Comment out excessive logging

This commit is contained in:
cora 2022-11-06 11:49:39 +01:00
parent b82912f30d
commit 1d18482103
1 changed files with 2 additions and 2 deletions

View File

@ -89,10 +89,10 @@ function mcl_raids.find_villager(pos)
if object.name ~= "mobs_mc:villager" then
return
elseif object.name == "mobs_mc:villager" then
minetest.log("action", "[mcl_raids] Villager Found.")
--minetest.log("action", "[mcl_raids] Villager Found.")
return true
else
minetest.log("action", "[mcl_raids] No Villager Found.")
--minetest.log("action", "[mcl_raids] No Villager Found.")
return false
end
end