(svn r11706) -Codechange: split vehicle.h and remove another bunch of useless includes.

This commit is contained in:
rubidium
2007-12-27 13:35:39 +00:00
parent 4e66f5a04b
commit 384503e7d3
82 changed files with 362 additions and 330 deletions

View File

@@ -18,7 +18,6 @@
#include "command_func.h"
#include "industry.h"
#include "station.h"
#include "vehicle.h"
#include "player.h"
#include "news.h"
#include "saveload.h"
@@ -1793,7 +1792,7 @@ static void DoBuildTownHouse(Town *t, TileIndex tile)
construction_counter = GB(r, 2, 2);
}
}
MakeTownHouse(tile, t->index, construction_counter, construction_stage, house, VehicleRandomBits());
MakeTownHouse(tile, t->index, construction_counter, construction_stage, house, Random());
}
}