1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-04-06 02:37:19 +00:00

rogueviz::fifteen:: achievement for solving Fifteen

This commit is contained in:
Zeno Rogue 2025-03-14 13:15:58 +01:00
parent f1af3245a6
commit 39041fa006

View File

@ -137,7 +137,12 @@ void check_move() {
if(f.current && (f.currentdir != f.targetdir || f.currentmirror != f.targetmirror))
ok = false;
}
if(ok == true) state = state::solved;
if(ok == true) {
state = state::solved;
#if RVCOL
if(current_puzzle = &puzzles[1]) rv_achievement("FIFTEEN");
#endif
}
}
}
}