git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8270 c06c8d41-db1a-0410-9941-cceddc491573
3PPH2RAOMAQGDPQKUKMMA3RC5M3VUSEJ7WKGZNVJ7UBFE75K574QC
BNRY5YIXLFE2TDNU2JQHWWXJQVWNSEWQ52DU7XUWIT5DZWKGBDDAC
FVNCYG6OXF4HD35QH2HQ727QASV4FVMTS7YODPL6UE3KGXP6UJLQC
SCXTTP2FDNB2A7F4XXGXSSOEKZQ7ODDGN5YBCTZXGZ22CLCEH3WQC
K2CS6TCX2NDVL2ASEHGP4J4K4IJ6FP3ANNKTSIWVG43HPYSBX6ZQC
EC76VUBNPZVDOVDX3KPSDF3KCNMOOGXZEALYVDATPE42BCA4GUVQC
QDTVLBRGHDTRUVT7I3O72K6TMOYAUSAJBZUHGOEFU2RKJNUPWZSQC
// Special case for Blork the orc: shorten
// his name to "Blork" to avoid mentions of
// "Blork the orc the spectral orc".
if (monster->type == MONS_BLORK_THE_ORC)
menv[spectre].mname = "Blork";
}
name_zombified_unique(&menv[spectre], monster->type,
monster->name(DESC_PLAIN));
void name_zombified_unique(monsters *mon, int mc, const std::string mon_name)
{
if (mons_is_unique(mc))
{
mon->mname = mon_name;
// Special case for Blork the orc: shorten his name to "Blork"
// to avoid mentions of e.g "Blork the orc the orc zombie".
if (mc == MONS_BLORK_THE_ORC)
mon->mname = "Blork";
}
}