fixed the %E0 directives in Russian

This commit is contained in:
Zeno Rogue 2018-06-07 14:28:49 +02:00
parent 0559a9372e
commit ef83f1ef23
1 changed files with 8 additions and 0 deletions

View File

@ -143,6 +143,14 @@ void basicrep(string& x) {
rep(x, "%l0", choose3(playergender(), "l", "la", "lo"));
rep(x, "%d0", choose3(playergender(), "", "a", "o"));
}
if(l == 4) {
rep(x, "%E0", choose3(playergender(), "", "а", "о"));
rep(x, "%A0", choose3(playergender(), "ый", "ая", "ое"));
rep(x, "%c0", choose3(playergender(), "ся", "ась", ""));
rep(x, "%y0", choose3(playergender(), "ый", "ая", "ое"));
}
#endif
}