Skip to content
This repository has been archived by the owner on Oct 14, 2023. It is now read-only.

Commit

Permalink
Bugfix -> Plugin now work on 1.20.2
Browse files Browse the repository at this point in the history
  • Loading branch information
EinfacheSache committed Sep 28, 2023
1 parent 93d30d2 commit 7bf4d73
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>de.cubeattack</groupId>
<artifactId>neoprotect</artifactId>
<version>1.2.9.9-Beta</version>
<version>1.3.0-Beta</version>
<packaging>jar</packaging>

<name>NeoProtect</name>
Expand Down Expand Up @@ -119,7 +119,7 @@
<dependency>
<groupId>com.github.CubeAttack</groupId>
<artifactId>EasyAPI</artifactId>
<version>e4c7f7a121</version>
<version>1765b9a426</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
Expand Down Expand Up @@ -149,7 +149,7 @@
<dependency>
<groupId>net.md-5</groupId>
<artifactId>bungeecord-proxy</artifactId>
<version>1.20-R0.1-SNAPSHOT</version>
<version>1.20-R0.2-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ public ExecutorBuilder args(String[] args) {
}

public ExecutorBuilder local(Locale local) {
this.local = local;
this.local = local == null ? Locale.ENGLISH : local;
return this;
}

Expand All @@ -577,7 +577,7 @@ public void executeChatEvent() {
}

public void executeCommand() {
API.getExecutorService().submit(() -> new NeoProtectExecutor().command(this));
new NeoProtectExecutor().command(this);
}

public NeoProtectPlugin getInstance() {
Expand Down

0 comments on commit 7bf4d73

Please sign in to comment.