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

@ -32,6 +32,8 @@ map<cell*, int> rti_id;
string track_code = "OFFICIAL";
transmatrix straight;
int race_try;
void apply_seed() {

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