1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-31 22:12:59 +00:00

nilrider:: do not switch level on saving a usergen level

This commit is contained in:
Zeno Rogue
2024-08-20 19:13:28 +02:00
parent 88b927e4b1
commit da5ba2bf2b
3 changed files with 9 additions and 7 deletions

View File

@@ -100,7 +100,7 @@ void load() {
if(s == "*RLE") { have_rle = true; continue; }
if(s == "*FILE") {
string s1 = scanline_noblank(f);
try { load_level(s1); }
try { load_level(s1, false); }
catch(hr_exception& e) { println(hlog, "error: could not load level ", s1, ", reason: ", e.what()); }
}
if(s == "*MANUAL") {