1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-02-02 20:29:17 +00:00

new CLI options for racing

This commit is contained in:
Zeno Rogue 2019-10-05 15:34:26 +02:00
parent 4e1abe964f
commit 6d4b61f0c0

View File

@ -772,6 +772,14 @@ int readArgs() {
stop_game();
switch_game_mode(rg::racing);
}
else if(argis("-rsc")) {
standard_centering = true;
}
else if(argis("-rfast")) {
PHASEFROM(3);
start_game();
race_start_tick = 1;
}
else return 1;
return 0;
}