It seems like some commit between fbb2e3d and 7e99de8 broke something with the category parsing. Ever since the following db update (92a5d6c), most category names include multiple categories and commas. For example railMissingUpdateAfterPushFix from carpet-fixes used to have the categories
[
"BUGFIX",
"CARPETFIXES",
"EXPERIMENTAL"
]
but now has
[
"BUGFIX",
"CARPETFIXES,BUGFIX",
"CARPETFIXES,BUGFIX,EXPERIMENTAL"
]
which is obviously wrong. Many rules also just have all categories in one string now. Take for example unpackableWool from Rug: what used to be
[
"CRAFTING",
"RUG",
"SURVIVAL"
]
is now
[
"CRAFTING, SURVIVAL, RUG"
]
It seems like some commit between fbb2e3d and 7e99de8 broke something with the category parsing. Ever since the following db update (92a5d6c), most category names include multiple categories and commas. For example
railMissingUpdateAfterPushFixfrom carpet-fixes used to have the categoriesbut now has
which is obviously wrong. Many rules also just have all categories in one string now. Take for example
unpackableWoolfrom Rug: what used to beis now
[ "CRAFTING, SURVIVAL, RUG" ]