Skip to content

Commit e66c62c

Browse files
committed
fix: invalid check, use proper check
1 parent e99db63 commit e66c62c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stats/missing.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ func getEnrichments(accessories []models.InsertAccessory) map[string]int {
6666
func GetRecombobulatedCount(accessories []models.InsertAccessory) int {
6767
count := 0
6868
for _, accessory := range accessories {
69-
if !accessory.AllowsRecomb {
69+
if !constants.SPECIAL_ACCESSORIES[accessory.Id].AllowsRecomb {
7070
continue
7171
}
7272

0 commit comments

Comments
 (0)