Skip to content

Commit bb51bdc

Browse files
committed
revert spigot version
1 parent 0e5414a commit bb51bdc

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,13 +207,13 @@
207207
<dependency>
208208
<groupId>org.spigotmc</groupId>
209209
<artifactId>spigot-api</artifactId>
210-
<version>1.21.5-R0.1-SNAPSHOT</version>
210+
<version>1.20.6-R0.1-SNAPSHOT</version>
211211
<scope>provided</scope>
212212
</dependency>
213213
<dependency>
214214
<groupId>com.sk89q.worldguard</groupId>
215215
<artifactId>worldguard-bukkit</artifactId>
216-
<version>7.1.0-SNAPSHOT</version>
216+
<version>7.0.9-SNAPSHOT</version>
217217
<scope>provided</scope>
218218
<exclusions>
219219
<exclusion>
@@ -231,7 +231,7 @@
231231
<dependency>
232232
<groupId>com.sk89q.worldedit</groupId>
233233
<artifactId>worldedit-bukkit</artifactId>
234-
<version>7.4.0-SNAPSHOT</version>
234+
<version>7.2.6-SNAPSHOT</version>
235235
<scope>provided</scope>
236236
<exclusions>
237237
<exclusion>

src/main/java/dev/espi/protectionstones/commands/ArgAdminHelp.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ private static void send(CommandSender p, String text, String info, String click
3636
// Create the hover event from the info text, add click event after
3737
BaseComponent[] hoverComponents = TextComponent.fromLegacyText(info);
3838
mainText.setHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, hoverComponents));
39-
//toggle for running on mouse click, currently disabled
39+
//toggle for running on mouse click
4040
if (run) {
4141
mainText.setClickEvent(new ClickEvent(ClickEvent.Action.RUN_COMMAND, ChatColor.stripColor(clickCommand)));
4242
} else {
@@ -56,6 +56,7 @@ static boolean argumentAdminHelp(CommandSender p, String[] args) {
5656
ChatColor.RESET + " PS Admin Help " +
5757
ChatColor.DARK_GRAY + ChatColor.STRIKETHROUGH + "===============\n");
5858

59+
// The run parameter is currently unused by all messages
5960
send(p,
6061
tx + " admin version",
6162
"Show the version number of the plugin.\n\n" + bc + " admin version",
@@ -157,7 +158,6 @@ static boolean argumentAdminHelp(CommandSender p, String[] args) {
157158
"Use this command to recalculate block types for PS regions in a world.\n\n" + bc + " admin fixregions",
158159
bc + " admin fixregions",
159160
false);
160-
//add footer since it was missing
161161
p.sendMessage(ChatColor.DARK_GRAY + "" + ChatColor.STRIKETHROUGH + "=============================================");
162162

163163
return true;

0 commit comments

Comments
 (0)