(svn r11234) -Fix [FS#1312]: the explosion vehicles were placed too far to the south.

This commit is contained in:
rubidium 2007-10-09 15:48:41 +00:00
parent 6b9bff7531
commit 84d93ec0e2
1 changed files with 2 additions and 2 deletions

View File

@ -1261,8 +1261,8 @@ static void HandleCrashedAircraft(Vehicle *v)
SetAircraftPosition(v, v->x_pos, v->y_pos, v->z_pos);
r = Random();
CreateEffectVehicleRel(v,
GB(r, 0, 4) + 4,
GB(r, 4, 4) + 4,
GB(r, 0, 4) - 4,
GB(r, 4, 4) - 4,
GB(r, 8, 4),
EV_EXPLOSION_SMALL);
}