1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-01 06:23:00 +00:00

racing:: you can no more start moving by pressing GO before the time starts

This commit is contained in:
Zeno Rogue
2018-11-25 23:40:36 +01:00
parent 1810a89daa
commit b840574351
2 changed files with 3 additions and 1 deletions

View File

@@ -1580,7 +1580,7 @@ void movePlayer(monster *m, int delta) {
if(abs(mdx) > abs(mturn)) mturn = -mdx;
mdx = mdy = 0;
facemouse = shotkey = dropgreen = false;
if(ticks < racing::race_start_tick) mgo = 0;
if(ticks < racing::race_start_tick || !racing::race_start_tick) mgo = 0;
}
#endif