8000 Make the CommandAPI complain less about command registered in the plugin.yml by DerEchtePilz · Pull Request #391 · CommandAPI/CommandAPI · GitHub
[go: up one dir, main page]

Skip to content

Make the CommandAPI complain less about command registered in the plugin.yml #391

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

Merged
merged 4 commits into from
Jan 1, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
include plugin name in the information message
  • Loading branch information
DerEchtePilz committed Jan 1, 2023
commit 79910c3cfa436ac95a6027e80bb2c3ebe9212d73
Original file line number Diff line number Diff line change
Expand Up @@ -388,8 +388,8 @@ public void preCommandRegistration(String commandName) {
.formatted(commandName, pluginName));
} else {
CommandAPI.logNormal(
"Plugin command /%s is registered by Bukkit. You may have to use /minecraft:%s to execute your command."
.formatted(commandName, commandName));
"Plugin command /%s is registered by Bukkit (%s). You may have to use /minecraft:%s to execute your command."
.formatted(commandName, pluginName, commandName));
}
}

Expand Down
0