7 lines
164 B
Plaintext
7 lines
164 B
Plaintext
|
// returns if the race is running
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
// return true if a race is in progress
|
||
|
return GetLocalInt(OBJECT_SELF, "IC_RACE_RUNNING");
|
||
|
}
|