1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-04-09 12:16:45 +00:00

rogueviz::bringris::commandline options -bringris-drop and -bringris-explore

This commit is contained in:
Zeno Rogue 2025-02-08 12:08:14 +01:00
parent d2e59e7128
commit 7a31a33c5f

View File

@ -2139,6 +2139,19 @@ int args() {
init_all();
}
else if(argis("-bringris-drop")) {
PHASEFROM(2);
start_new_game();
paused = false;
explore = false;
cur.pro_game = false;
new_piece(); fulldrop(); fallen(); new_piece(); fulldrop();
}
else if(argis("-bringris-explore")) {
explore = true;
}
else if(argis("-ray-off"))
use_raycaster = false;