1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-24 22:23:18 +00:00

rogueviz:: timetowait set for iterations

This commit is contained in:
Zeno Rogue 2018-07-09 20:40:28 +02:00
parent 6e4e9e0a46
commit 887deae03f

View File

@ -1495,8 +1495,8 @@ void close() {
bool turn(int delta) {
if(!on) return false;
if(kind == kSAG) sag::iterate();
if(kind == kKohonen) kohonen::steps();
if(kind == kSAG) sag::iterate(), timetowait = 0;
if(kind == kKohonen) kohonen::steps(), timetowait = 0;
return false;
// shmup::pc[0]->rebase();
}