(svn r947) -Fix: [Network] Desync problem

This commit is contained in:
truelight 2004-12-04 18:43:07 +00:00
parent 581302e147
commit 43e495045c
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ static Vehicle *InitializeVehicle(Vehicle *v)
v->next = NULL;
v->next_hash = 0xffff;
v->string_id = 0;
v->random_bits = RandomRange(256);
v->random_bits = InteractiveRandomRange(256);
return v;
}