Not sure if we want to fix this, but there a gap between COMPONENT_CATEGORY_EV_CHARGER and COMPONENT_CATEGORY_CRYPTO_MINER:
// A station for charging electrical vehicles.
COMPONENT_CATEGORY_EV_CHARGER = 6;
// A crypto miner.
COMPONENT_CATEGORY_CRYPTO_MINER = 8;
Proposed solution
Maybe make it contiguous?
// A station for charging electrical vehicles.
COMPONENT_CATEGORY_EV_CHARGER = 6;
// A crypto miner.
COMPONENT_CATEGORY_CRYPTO_MINER = 7;
// An electrolyzer for converting water into hydrogen and oxygen.
COMPONENT_CATEGORY_ELECTROLYZER = 8;
// ...
We would need to shift all the following tags too (we have until 15, if we shift if will be until 14).
What's needed?
Not sure if we want to fix this, but there a gap between
COMPONENT_CATEGORY_EV_CHARGER
andCOMPONENT_CATEGORY_CRYPTO_MINER
:Proposed solution
Maybe make it contiguous?
We would need to shift all the following tags too (we have until 15, if we shift if will be until 14).