git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@461 c06c8d41-db1a-0410-9941-cceddc491573
F77HEHFP26LGS3LSDB6J7ZWZUU4X6DMYPMQEAL2JXM4Y3KJU2UDQC
SDLKLUNFGVKDS55DDJZCBAVIB7NL3RRYPTACAY65SCUQKV6APFSAC
function chunk_maybe_safe(chunk) local rot = food.rotting(chunk) local race = you.race() if rot then return race == "Ghoul" or race == "Kobold" or race == "Troll" or race == "Hill Orc" or race == "Ogre" end return trueend
function chunk_maybe_safe(chunk)
local rot = food.rotting(chunk)
local race = you.race()
if rot then
return race == "Ghoul"
or race == "Kobold"
or race == "Troll"
or race == "Hill Orc"
or race == "Ogre"
end
return true
if food.ischunk(it) and food.can_eat(it) then
if food.ischunk(it) and food.can_eat(it) and chunk_maybe_safe(it) then