From d57a359bbab6ae5db2357a4cee53ab446769047f Mon Sep 17 00:00:00 2001 From: Michael Meyer Date: Wed, 7 Jun 2023 13:36:24 -0400 Subject: [PATCH] Add correct Cyclops pluralization The correct plural of "Cyclops" is "Cyclopes", not "Cyclopses". I don't know if anyone would actually use that as a fruitname, but it wouldn't hurt to add it -- especially since a Cyclops does appear in the game. --- src/objnam.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/objnam.c b/src/objnam.c index 979370ac5..8421c3c1f 100644 --- a/src/objnam.c +++ b/src/objnam.c @@ -2363,6 +2363,7 @@ static const struct sing_plur one_off[] = { "children" }, /* (for wise guys who give their food funny names) */ { "cubus", "cubi" }, /* in-/suc-cubus */ { "culus", "culi" }, /* homunculus */ + { "Cyclops", "Cyclopes" }, { "djinni", "djinn" }, { "erinys", "erinyes" }, { "foot", "feet" },