-
-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
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
Command never gets executed #403
Comments
Annotations aren't required since they're actually transpiled to builders internally. Can you try using 5.4.2-SNAPSHOT instead? If I remember correctly, this is a known issue in 5.4.1. In addition, ensure that the commands aren't registered in the |
Thanks for the reply! Regarding the |
Yup! It needs to be pulled from the snapshot repository, <repository>
<id>chimera-snapshots</id>
<url>https://repo.karuslabs.com/repository/chimera-snapshots/</url>
</repository> Ah, what I meant was that commands shouldn't be registered in the I'll probably deploy 5.4.2 tomorrow if upgrading to 5.4.2-SNAPSHOT works. |
Thank you very much, it actually worked with the snapshot version! All my commands now execute properly |
I am experiencing a problem that sounds very similar to #253, in fact, I originally did have the commands declared in my
plugin.yml
. I then removed them, but I still have the same problem.Basically, the code looks like this:
The command is, in a way, registered, because it shows up in completion. However when I try to execute it, nothing happens. Log statements and debugging also confirmed that the
executes
lambda never gets executed. I've seen in other support questions (like #253) that people are also using annotation-based command registration. However, I'm trying to accomplish this with the plain brigadier / chimera builders only. Do I still need some basic annotation for it to work?Version Data:
The text was updated successfully, but these errors were encountered: