Fixes + Tweaks

This commit is contained in:
eraser1 2015-08-31 03:04:07 -05:00
parent a4144c7c07
commit b2a1e634e1
2 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@ _side = "bandit";
// find position // find position
_pos = call DMS_findSafePos; _pos = [10,100] call DMS_findSafePos;
// Set general mission difficulty // Set general mission difficulty

View File

@ -128,12 +128,12 @@ if ((_backpackCount > 0) && {count _backpacks>0}) then
}; };
if(DMS_RareLoot && {count DMS_RareLoot>0}) then if(DMS_RareLoot && {count DMS_RareLootList>0}) then
{ {
// (Maybe) Add rare loot // (Maybe) Add rare loot
if(random 100 < DMS_RareLootChance) then if(random 100 < DMS_RareLootChance) then
{ {
_item = DMS_RareLoot call BIS_fnc_selectRandom; _item = DMS_RareLootList call BIS_fnc_selectRandom;
if ((typeName _item)=="STRING") then if ((typeName _item)=="STRING") then
{ {
_item = [_item,1]; _item = [_item,1];