Compare commits

...

4 Commits

Author SHA1 Message Date
TreemanKing 664452d6a7
Merge e9abf01339 into 14a62d384f 2023-11-16 09:40:49 +00:00
TreemanKing 14a62d384f
fix: typo in tag api (#396) 2023-11-05 09:36:47 +00:00
TreemanKing 24d05ff2fd
fix: Add Selector Alias (Wand) in help message (#387)
Closes #333
2023-09-13 02:17:31 +01:00
TreemanKing 0bfc3b79de
fix: Add Author for Velocity Plugin (#386) 2023-09-13 02:14:57 +01:00
3 changed files with 3 additions and 3 deletions

View File

@ -783,7 +783,7 @@ public class AdvancedPortalsCommand implements CommandExecutor, TabCompleter {
// Add pages if there starts to become too many
if (args.length == 1) {
sendMenu(sender, "Help Menu",
"\u00A76/" + command + " selector \u00A7a- gives you a region selector",
"\u00A76/" + command + " selector/wand \u00A7a- gives you a region selector",
"\u00A76/" + command + " create \u00A7c[tags] \u00A7a- creates a portal with a selection ",
"\u00A76/" + command + " portalblock \u00A7a- gives you a portal block",
"\u00A76/" + command + " endportalblock \u00A7a- gives you an end portal block",

View File

@ -72,7 +72,7 @@ public class TagHandler {
* @param argData
* @return if the tag will be removed.
*/
boolean ragRemoved(Player player, ActivationData activeData, String argData);
boolean tagRemoved(Player player, ActivationData activeData, String argData);
}

View File

@ -21,7 +21,7 @@ import java.util.concurrent.TimeUnit;
/**
* While there may be a better way to do this for now we are keeping the behavior so it also works with Bungee's horrible API.
*/
@Plugin(id = "advancedportals", name = "Advanced Portals",
@Plugin(authors = {"sekwah41"} ,id = "advancedportals", name = "Advanced Portals",
url = "https://www.spigotmc.org/resources/advanced-portals.14356/",
version = "0.9.3")
public class AdvancedPortalsPlugin {