You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 7, 2024. It is now read-only.
When I try to create a new command, then Gradle throws an exception and mentions something about "Command with name 'creategame' not found.". Here's the stacktrace: https://paste.wut.ee/avecocenoz.cs
I guess that something changed in Gradle API? 🤔
It works in 4.8 perfectly. I tried both 0.2.1 and 0.3.0 plugin versions.
I have this in my build.gradle.kts:
bukkit {
name ="x"
description ="y"
authors =listOf("mikroskeem")
main ="z"
commands {
"creategame" {
description ="Creates a new game"
}
}
}
Current workaround is to use this:
bukkit {
// ...
commands.create("creategame") {
description ="Creates a new game"
}
}
The text was updated successfully, but these errors were encountered:
When I try to create a new command, then Gradle throws an exception and mentions something about "Command with name 'creategame' not found.". Here's the stacktrace: https://paste.wut.ee/avecocenoz.cs
I guess that something changed in Gradle API? 🤔
It works in 4.8 perfectly. I tried both 0.2.1 and 0.3.0 plugin versions.
I have this in my
build.gradle.kts
:Current workaround is to use this:
The text was updated successfully, but these errors were encountered: