Skip to content
This repository was archived by the owner on Feb 15, 2022. It is now read-only.

Commit dd1258a

Browse files
committed
Updated plugin messages to 1.13+
1 parent c94ad22 commit dd1258a

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

src/main/java/net/badlion/timers/TimerPlugin.java

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,16 @@
66
import org.bukkit.plugin.java.JavaPlugin;
77

88
import java.nio.charset.Charset;
9-
import java.util.logging.Level;
109

1110
public class TimerPlugin extends JavaPlugin {
1211

13-
public static final String CHANNEL_NAME = "BLC|T";
12+
public static final String CHANNEL_NAME = "badlion:timers";
1413
public static final Charset UTF_8_CHARSET = Charset.forName("UTF-8"); // Do not use Guava because of 1.7
1514

1615
private TimerApiImpl timerApi;
1716

1817
@Override
1918
public void onEnable() {
20-
// Only support <= 1.12.2 at the moment, we will add 1.13 support when BLC 1.13 is ready
21-
if (this.getServer().getBukkitVersion().startsWith("1.13")) {
22-
this.getLogger().log(Level.SEVERE, "BLC Timer API is not currently compatible with 1.13 Minecraft. Check back later for updates.");
23-
this.getPluginLoader().disablePlugin(this);
24-
return;
25-
}
2619

2720
NmsManager.init(this);
2821

0 commit comments

Comments
 (0)