Skip to content

Commit 786969c

Browse files
committed
Bump targetMinecraftVersion -> 1.21.8
1 parent 2346dde commit 786969c

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

bukkit/src/main/java/com/sk89q/protocolstringreplacer/PsrDisguisePlugin.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
import javax.annotation.Nonnull;
2121
import java.io.File;
2222
import java.io.InputStream;
23+
import java.nio.file.Path;
2324
import java.util.List;
2425
import java.util.logging.Logger;
2526

@@ -46,6 +47,11 @@ public File getDataFolder() {
4647
return null;
4748
}
4849

50+
@Override
51+
public @NotNull Path getDataPath() {
52+
return Plugin.super.getDataPath();
53+
}
54+
4955
@NotNull
5056
@Override
5157
public PluginDescriptionFile getDescription() {
@@ -181,4 +187,9 @@ public List<String> onTabComplete(@NotNull CommandSender sender, @NotNull Comman
181187
return null;
182188
}
183189

190+
@Override
191+
public @NotNull String namespace() {
192+
return "";
193+
}
194+
184195
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
versionName = 3.2.2
22
versionChannel = Stable
33
versionId = 129
4-
targetMinecraftVersion = 1.21.6
4+
targetMinecraftVersion = 1.21.8

0 commit comments

Comments
 (0)