Add a config file to allow server owners to enable and disable individual Mixins.
In the spirit of "Is it a bug or a feature?" server owners might decide differently on how they wanna handle a bug. A config should give them this control.
The best way to go about this would probably be to only load Mixins that have been enabled in the config.
Judging from my previous tests, a Forge mod config can't be used, as it's loaded too late in the game lifecycle. A custom config handler has to be written and implemented into the Mixin Plugin. It might be wise to copy some parts of Forge's config (if applicable by license) to have a familiar feel to the config.
Add a config file to allow server owners to enable and disable individual Mixins.
In the spirit of "Is it a bug or a feature?" server owners might decide differently on how they wanna handle a bug. A config should give them this control.
The best way to go about this would probably be to only load Mixins that have been enabled in the config.
Judging from my previous tests, a Forge mod config can't be used, as it's loaded too late in the game lifecycle. A custom config handler has to be written and implemented into the Mixin Plugin. It might be wise to copy some parts of Forge's config (if applicable by license) to have a familiar feel to the config.