mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
Fix minus Number in Serverside debug
This commit is contained in:
@@ -292,11 +292,13 @@ if (isServer and isNil "sm_done") then {
|
|||||||
|
|
||||||
// spawn_vehicles
|
// spawn_vehicles
|
||||||
_vehLimit = MaxVehicleLimit - _totalvehicles;
|
_vehLimit = MaxVehicleLimit - _totalvehicles;
|
||||||
diag_log ("HIVE: Spawning # of Vehicles: " + str(_vehLimit));
|
|
||||||
if(_vehLimit > 0) then {
|
if(_vehLimit > 0) then {
|
||||||
|
diag_log ("HIVE: Spawning # of Vehicles: " + str(_vehLimit));
|
||||||
for "_x" from 1 to _vehLimit do {
|
for "_x" from 1 to _vehLimit do {
|
||||||
[] spawn spawn_vehicles;
|
[] spawn spawn_vehicles;
|
||||||
};
|
};
|
||||||
|
} else {
|
||||||
|
diag_log "HIVE: Vehicle Spawn limit reached!";
|
||||||
};
|
};
|
||||||
// spawn_roadblocks
|
// spawn_roadblocks
|
||||||
diag_log ("HIVE: Spawning # of Debris: " + str(MaxDynamicDebris));
|
diag_log ("HIVE: Spawning # of Debris: " + str(MaxDynamicDebris));
|
||||||
|
|||||||
Reference in New Issue
Block a user