Skip to content

Commit 3411919

Browse files
committed
Fix CoreProtect/WorldGuard addon not loading on 1.21.X
1 parent de1b388 commit 3411919

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.syntaxphoenix.spigot</groupId>
77
<artifactId>smoothtimber-legacy</artifactId>
8-
<version>1.27.3</version>
8+
<version>1.27.4</version>
99
<name>SmoothTimber</name>
1010
<packaging>jar</packaging>
1111

src/main/java/com/syntaxphoenix/spigot/smoothtimber/compatibility/coreprotect/CoreProtectAddon.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ public void onEnable(final PluginPackage pluginPackage, final SmoothTimber smoot
3939
case v1_16x:
4040
case v1_19x:
4141
case v1_20x:
42+
case v1_21x:
4243
compat = new CoreCompat_v1_13_x(pluginPackage.getPlugin());
4344
break;
4445
default:

src/main/java/com/syntaxphoenix/spigot/smoothtimber/compatibility/worldguard/WorldGuard.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ public void onEnable(final PluginPackage pluginPackage, final SmoothTimber smoot
2525
case v1_16x:
2626
case v1_19x:
2727
case v1_20x:
28+
case v1_21x:
2829
listener = new WorldGuardChopListener_v7_x();
2930
break;
3031
default:

0 commit comments

Comments
 (0)