AI Discontinue Car Crash

Issue #417 resolved
Eric B Jones repo owner created an issue

In the Bug.db file, AI discontinue vehicles but do not remove them for sale. Thus causing a possible crash on some machines.

The sql to find it is: SELECT DISTINCT cd.Car_ID FROM CarDistro cd WHERE cd.Car_ID IN (SELECT Car_ID FROM CarInfo WHERE Status = 0) ;

And you can update them as a hack with: UPDATE CarInfo SET Status = 1 WHERE Car_ID = 5448;

But better to find and fix the underlying problem.

Comments (3)

  1. Log in to comment