1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-07-03 17:02:42 +00:00

immediate overgeneration

This commit is contained in:
Zeno Rogue
2018-03-27 14:08:56 +02:00
parent fa7822fdf8
commit b74ca7b4c8
2 changed files with 6 additions and 2 deletions
+3 -1
View File
@@ -742,11 +742,13 @@ void showGraphConfig() {
XLAT("movement animation speed"),
XLAT("+5 = move instantly"));
if(xuni == 'r')
if(xuni == 'r') {
dialog::editNumber(sightrange, 4, allowIncreasedSight() ? 10 : 7, 1, 7, XLAT("sight range"),
XLAT("Roughly 42% cells are on the edge of your sight range. Reducing "
"the sight range makes HyperRogue work faster, but also makes "
"the game effectively harder."));
dialog::reaction = [] () { if(overgenerate) doOvergenerate(); };
}
if(xuni == 'k') {
glyphsortorder = eGlyphsortorder((glyphsortorder+6+(shiftmul>0?1:-1)) % gsoMAX);