We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This core plugin has at least 3 ways it can call event handlers from plugins:
connection.hooker.hook(connection, info)
connection.handler.event(event)
connection.core["Coreexecutor"].main(connection, info, info.plugin_name)
This mess needs to be cleaned up and we should use one system for everything.
The text was updated successfully, but these errors were encountered:
@xray7224 choose one and I can convert everything to use that ☺
Sorry, something went wrong.
No branches or pull requests
This core plugin has at least 3 ways it can call event handlers from plugins:
connection.hooker.hook(connection, info)
which is labelled as "old system"connection.handler.event(event)
which is labelled as "new events/hook system"connection.core["Coreexecutor"].main(connection, info, info.plugin_name)
which is labelled as new or oldThis mess needs to be cleaned up and we should use one system for everything.
The text was updated successfully, but these errors were encountered: