From: Pasi Kallinen Date: Tue, 17 Mar 2020 17:06:32 +0000 (+0200) Subject: Alias "kirin" for "ki-rin" X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=750d2fe560e4bbdc775be600bca8fb587cff1ab4;p=nethack Alias "kirin" for "ki-rin" --- diff --git a/doc/fixes37.0 b/doc/fixes37.0 index 46d09741e..cb564f0d5 100644 --- a/doc/fixes37.0 +++ b/doc/fixes37.0 @@ -82,6 +82,7 @@ lock the castle chest revamp amnesia to forget skills instead of objects or maps when Punished and carrying the iron ball and levitating, hurtling in the opposite direction of a thrown object didn't bring along the chain +recognize "kirin" as alias for "ki-rin" when asked to create a monster Fixes to 3.7.0-x Problems that Were Exposed Via git Repository diff --git a/src/mondata.c b/src/mondata.c index 4ee2a6ffe..9672159ee 100644 --- a/src/mondata.c +++ b/src/mondata.c @@ -757,6 +757,7 @@ const char *in_str; /* Hyphenated names -- it would be nice to handle these via fuzzymatch() but it isn't able to ignore trailing stuff */ { "ki rin", PM_KI_RIN }, + { "kirin", PM_KI_RIN }, { "uruk hai", PM_URUK_HAI }, { "orc captain", PM_ORC_CAPTAIN }, { "woodland elf", PM_WOODLAND_ELF },