1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-23 21:07:17 +00:00

fixed resetModes to reset firstland and number of players

This commit is contained in:
Zeno Rogue 2017-09-30 11:25:55 +02:00
parent 99ebe26463
commit 921becea59

View File

@ -309,6 +309,7 @@ void initConfig() {
void resetModes() { void resetModes() {
popAllGames(); popAllGames();
firstland = laIce; vid.scfg.players = 1;
if(shmup::on) restartGame('s'); if(shmup::on) restartGame('s');
if(inv::on) restartGame('i'); if(inv::on) restartGame('i');
if(chaosmode) restartGame('C'); if(chaosmode) restartGame('C');
@ -1232,4 +1233,4 @@ void selectLanguageScreen() {
}; };
} }
#endif #endif