Blacklist Quest Items from Scav Case

This commit is contained in:
Kaeno 2024-01-31 22:52:55 +00:00
parent 0a16e06c89
commit 23ceca5279

View File

@ -109,6 +109,11 @@ export class ScavCaseRewardGenerator
return false;
}
if (item._props.QuestItem)
{
return false;
}
// Skip item if item id is on blacklist
if (
(item._type !== "Item")