private final static double oddsOfWarehouse = Odds.oddsVeryLikely;
@Override
protected PlatLot getPark(WorldGenerator generator, PlatMap platmap, Odds odds, int chunkX, int chunkZ) {
if (odds.playOdds(oddsOfStorageLot))
return new StorageLot(platmap, chunkX, chunkZ);
else
return super.getPark(generator, platmap, odds, chunkX, chunkZ);
}