Modify IsLoot to include "_parts" containers

Like the title says, modify IsLoot to include "_parts" (tech_parts_1, tech_parts_2, vehicle_parts). Currently missing.

private static bool IsLoot(string str)
        {
            if (trackLoot)
            {
                return str.Contains("loot") || str.Contains("crate_") || str.Contains("trash") || str.Contains("hackable") || str.Contains("oil") || str.Contains("campfire") || str.Contains("_parts");
            }

            return False;
        }​

added in next update thanks