Skip to content

Commit

Permalink
feat: Added missing commands from tab complete
Browse files Browse the repository at this point in the history
  • Loading branch information
sekwah41 committed Jun 27, 2021
1 parent dfe5cfc commit f364828
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
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

0 comments on commit f364828

Please sign in to comment.