1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-29 13:07:40 +00:00

nilrider:: reverted duration check

This commit is contained in:
Zeno Rogue
2022-06-08 18:04:27 +02:00
parent 4d3a9081a9
commit f02b385138
2 changed files with 3 additions and 31 deletions

View File

@@ -435,7 +435,6 @@ void save(string s) {
}
auto wfc_hook =
addHook(hooks_handleKey, 100, wfc_handleKey) +
addHook(hooks_args, 100, [] {
using namespace arg;
@@ -450,6 +449,9 @@ auto wfc_hook =
else if(argis("-dynamic-wfc-save")) {
shift(); save(args());
}
else if(argis("-wfc-regen-key")) {
rogueviz::rv_hook(hooks_handleKey, 100, wfc_handleKey);
}
else return 1;
return 0;