From 3e993bd8f7215f68adb31c696add0c3a99b2f039 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 26 Apr 2016 01:43:59 -0400 Subject: [PATCH] avoid "the Serpent of Hell the spectral Serpent of Hell" --- crawl-ref/source/mon-util.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crawl-ref/source/mon-util.cc b/crawl-ref/source/mon-util.cc index 235ec59..13f047e 100644 --- a/crawl-ref/source/mon-util.cc +++ b/crawl-ref/source/mon-util.cc @@ -1746,6 +1746,10 @@ void name_zombie(monster* mon, monster_type mc, const string &mon_name) mon->mname = "Enchantress"; mon->flags |= MF_NAME_ADJECTIVE; } + else if (mons_species(mc) == MONS_SERPENT_OF_HELL) + { + mon->mname = ""; + } if (starts_with(mon->mname, "shaped ")) mon->flags |= MF_NAME_SUFFIX; -- 1.8.5