Fix hardestroom not being translated

`hardestroom` currently stores the current roomname, but it was missing
a call to get the translated string. This has been added, fixing the
hardest room appearing as untranslated.
This commit is contained in:
AllyTally 2023-03-05 15:08:33 -04:00 committed by Misa Elizabeth Kai
parent d112dee72c
commit 188fc996bd
1 changed files with 1 additions and 1 deletions

View File

@ -4189,7 +4189,7 @@ void Game::gethardestroom(void)
}
else
{
hardestroom = map.roomname;
hardestroom = loc::gettext_roomname(map.custommode, roomx, roomy, map.roomname, map.roomname_special);
}
}
}