Skip to content
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

feat: Added missing commands from tab complete #270

Merged
merged 1 commit into from
Jun 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 8 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/pr_changelog_release_notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# What Changed
Whatever changed here

## Release Notes
If anything should be commented in the changelog release notes.

**NOTE:** Please remove this unless something important needs to be shared.
It's just to save time looking up what is needed in the event we need to.
Original file line number Diff line number Diff line change
Expand Up @@ -631,6 +631,14 @@ public boolean onCommand(CommandSender sender, Command cmd, String command, Stri
case "help":
helpCommand(sender, command, args);
break;
case "bukkitpage":
sender.sendMessage(
PluginMessages.customPrefix + " Bukkit Page: http://dev.bukkit.org/bukkit-plugins/advanced-portals/");
break;
case "helppage":
sender.sendMessage(
PluginMessages.customPrefix + " Help Page: https://www.guilded.gg/Sekwah/groups/MDqAZyrD/channels/72ffdaa3-9273-4722-bf47-b75408b371af/docs/1090356006");
break;
case "show":
if (args.length > 1) {
String posX = portalConfig.getConfig().getString(args[1] + ".pos1.X");
Expand Down