mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-02-02 12:19:18 +00:00
racing:: you can no more start moving by pressing GO before the time starts
This commit is contained in:
parent
1810a89daa
commit
b840574351
@ -32,6 +32,8 @@ map<cell*, int> rti_id;
|
||||
|
||||
string track_code = "OFFICIAL";
|
||||
|
||||
transmatrix straight;
|
||||
|
||||
int race_try;
|
||||
|
||||
void apply_seed() {
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user