mirror of
https://codeberg.org/noisytoot/notnotdnethack.git
synced 2025-08-08 21:55:25 +01:00
Tan(nin) pluralization
This commit is contained in:
parent
5068d3e994
commit
cafdde0c55
1 changed files with 10 additions and 0 deletions
10
src/objnam.c
10
src/objnam.c
|
@ -2884,6 +2884,16 @@ const char *oldstr;
|
|||
Strcpy(spot-1, "oth");
|
||||
goto bottom;
|
||||
}
|
||||
/* Hebrew (plural of tannin is tanninim */
|
||||
if (len >= 6 && !strcmp(spot-5, "tannin")) {
|
||||
Strcpy(spot, "nim");
|
||||
goto bottom;
|
||||
}
|
||||
/* Hebrew (maybe-plural of tannah, which is maybe the feminine form of tan (NOT tannin)) */
|
||||
if (len >= 6 && !strcmp(spot-5, "tannah")) {
|
||||
Strcpy(spot-1, "oth");
|
||||
goto bottom;
|
||||
}
|
||||
|
||||
/* Elves (plural of alfr is alfar) */
|
||||
if (len >= 4 && !strcmp(spot-3, "alfr")) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue