Fix reversed variable

This commit is contained in:
icomrade
2016-10-10 15:38:09 -04:00
committed by GitHub
parent 1bb6554211
commit 347c531edc

View File

@@ -26,8 +26,8 @@ _enabled = false;
if (_canLoot ) then { if (_canLoot ) then {
//Get zombie class //Get zombie class
_unitTypes = getArray (_config >> "zombieClass"); _unitTypes = getArray (_config >> "zombieClass");
_min = getNumber (_config >> "maxRoaming"); _min = getNumber (_config >> "minRoaming");
_max = getNumber (_config >> "minRoaming"); _max = getNumber (_config >> "maxRoaming");
_zombieChance = getNumber (_config >> "zombieChance"); _zombieChance = getNumber (_config >> "zombieChance");
//Walking Zombies //Walking Zombies
@@ -67,4 +67,4 @@ if (_canLoot ) then {
}; };
}; };
//diag_log ("2 end"); //diag_log ("2 end");