From fa202de790221c9fb260c8eb4a3688c8a712235d Mon Sep 17 00:00:00 2001 From: vbawol Date: Mon, 13 Jun 2016 10:03:00 -0500 Subject: [PATCH] not needed to reduce by 1 --- .../epoch_server/compile/epoch_vehicle/EPOCH_spawn_vehicles.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/epoch_server/compile/epoch_vehicle/EPOCH_spawn_vehicles.sqf b/Sources/epoch_server/compile/epoch_vehicle/EPOCH_spawn_vehicles.sqf index b1901184..ab889dbc 100644 --- a/Sources/epoch_server/compile/epoch_vehicle/EPOCH_spawn_vehicles.sqf +++ b/Sources/epoch_server/compile/epoch_vehicle/EPOCH_spawn_vehicles.sqf @@ -57,7 +57,7 @@ _allCitysDync = []; } forEach _allCitys; _position = [0,0,0]; -_spawnCount = (count EPOCH_VehicleSlots - EPOCH_storedVehicleCount) - 1; +_spawnCount = (count EPOCH_VehicleSlots - EPOCH_storedVehicleCount); // diag_log format["DEBUG: count EPOCH_VehicleSlots: %1 EPOCH_storedVehicleCount: %2 _spawnCount %3", (count EPOCH_VehicleSlots), EPOCH_storedVehicleCount, _spawnCount,_allowedVehiclesList]; // diag_log format["DEBUG: _allowedVehiclesList: %1 ", _allowedVehiclesList];