diff --git a/NotEnoughUpdates-REPO b/NotEnoughUpdates-REPO index 2e887058..96548d5e 160000 --- a/NotEnoughUpdates-REPO +++ b/NotEnoughUpdates-REPO @@ -1 +1 @@ -Subproject commit 2e887058aa349aadd892bd72bb5cb91c57cb353c +Subproject commit 96548d5e24f5e78ff269a5d8e12996ac26629f4d diff --git a/src/stats/missing.go b/src/stats/missing.go index d0849aaf..5accbb03 100644 --- a/src/stats/missing.go +++ b/src/stats/missing.go @@ -66,6 +66,11 @@ func getEnrichments(accessories []models.InsertAccessory) map[string]int { func GetRecombobulatedCount(accessories []models.InsertAccessory) int { count := 0 for _, accessory := range accessories { + specialAccessory, exists := constants.SPECIAL_ACCESSORIES[accessory.Id] + if exists && !specialAccessory.AllowsRecomb { + continue + } + if accessory.Tag.ExtraAttributes.Recombobulated > 0 { count++ }