mirror of
https://github.com/projectbraf/braf_factions.git
synced 2026-06-14 05:33:29 +00:00
adjustments to errors generated in the .rpt
This commit is contained in:
@@ -140,6 +140,20 @@ facewears = [
|
||||
"CUP_G_WristWatch",
|
||||
"G_EyeProtectors_F"
|
||||
];
|
||||
_unit forceAddUniform (selectRandom suits);
|
||||
_unit addHeadgear (selectRandom headgears);
|
||||
_unit addGoggles (selectRandom facewears);
|
||||
_randomSuit = selectRandom suits
|
||||
if (((_randomSuit) != "") || (!isNull(_randomSuit))) then
|
||||
{
|
||||
_unit forceAddUniform _randomSuit;
|
||||
}; // IF Statement criado por que sim
|
||||
|
||||
_randomHeadgear = selectRandom headgears
|
||||
if (((_randomHeadgear) != "") || (!isNull(_randomHeadgear))) then
|
||||
{
|
||||
_unit addHeadgear _randomHeadgear;
|
||||
}; // IF Statement criado para parar com erros no log
|
||||
|
||||
_randomFacewears = selectRandom facewears
|
||||
if (((_randomFacewears) != "") || (!isNull(_randomFacewears))) then
|
||||
{
|
||||
_unit addGoggles _randomFacewears;
|
||||
}; // IF Statement criado para parar com erros no log
|
||||
Reference in New Issue
Block a user