diff options
author | truelight <truelight@openttd.org> | 2004-12-04 18:43:07 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2004-12-04 18:43:07 +0000 |
commit | 43e495045c1364199feb2d84ef7c938967200020 (patch) | |
tree | c55b956f364fcdcadd135130860621613e40c8dc | |
parent | 581302e1473e0942bab41010cbd52bcbdf666dfc (diff) | |
download | openttd-43e495045c1364199feb2d84ef7c938967200020.tar.xz |
(svn r947) -Fix: [Network] Desync problem
-rw-r--r-- | vehicle.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |