Description
I have a mod that (previously, and now) uses @SubscribeEvent annotations in listener classes. The mod has a number of these listener classes, with event subscriptions organised in a way that makes sense for the project. e.g. world events, connection events, etc. split into their own class.
The same registration approach (with the SubscribeEvent annotation) is used for all listeners - it is consistent.
One of the listener classes (currently) only listens to one event. The check below now prevents that listener class from using the annotation-based approach.
I assume this was done with good intentions to nudge people towards the 'new' way - but I feel in some cases (like the one outlined above) the annotation approach does make sense even with only one event being listened to.
Please could you reconsider.