1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-24 06:59:10 +00:00

(svn r10177) -Fix: Passengers has one A and two Es (ln)

This commit is contained in:
2007-06-17 10:47:30 +00:00
parent cf4911ddaf
commit 94bd08fc17
2 changed files with 3 additions and 3 deletions

View File

@@ -2732,10 +2732,10 @@ static void CheckTrainCollision(Vehicle *v)
(v->u.rail.track == TRACK_BIT_WORMHOLE && (v->direction & 2) != (realcoll->direction & 2)))
return;
/* two drivers + passangers killed in train v */
/* two drivers + passengers killed in train v */
uint num = 2 + CountPassengersInTrain(v);
if (!(coll->vehstatus & VS_CRASHED))
/* two drivers + passangers killed in train coll (if it was not crashed already) */
/* two drivers + passengers killed in train coll (if it was not crashed already) */
num += 2 + CountPassengersInTrain(coll);
SetVehicleCrashed(v);