1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-13 02:40:33 +00:00

in YASC messages, 'on the Round Table' replaced by 'being polite'

This commit is contained in:
Zeno Rogue 2024-02-24 03:13:48 +01:00
parent 87ac19febe
commit 43fc692b47

View File

@ -351,6 +351,8 @@ EX void create_yasc_message() {
if(in_ctx) {
if(c.where->wall == waNone && c.where->land == laBrownian)
context.push_back("on level 3");
else if(c.where->wall == waRoundTable)
context.push_back("being polite");
else
context.push_back(winf[c.where->wall].flags & WF_ON ? XLAT("on %the1", c.where->wall) : XLAT("in %the1", c.where->wall));
}