Skip to content
This repository has been archived by the owner on Jul 23, 2020. It is now read-only.

Commit

Permalink
Release 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ishland committed May 10, 2019
1 parent 0db957d commit cbed6a6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.ishland.bukkit.AsyncKeepAlive</groupId>
<artifactId>AsyncKeepAlive</artifactId>
<version>0.3-SNAPSHOT</version>
<version>0.3</version>
<build>
<plugins>
<plugin>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.ishland.bukkit.AsyncKeepAlive</groupId>
<artifactId>AsyncKeepAlive</artifactId>
<version>0.3-SNAPSHOT</version>
<version>0.3</version>
<repositories>
<repository>
<id>spigot-repo</id>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ public void onEnable() {
getServer().getPluginManager().disablePlugin(this);
return;
}
if (!(Bukkit.getVersion().contains("1.13") || Bukkit.getVersion().contains("1.12")
|| Bukkit.getVersion().contains("1.11") || Bukkit.getVersion().contains("1.10")
|| Bukkit.getVersion().contains("1.7.10")))
if (!(Bukkit.getVersion().contains("1.14") || Bukkit.getVersion().contains("1.13")
|| Bukkit.getVersion().contains("1.12") || Bukkit.getVersion().contains("1.11")
|| Bukkit.getVersion().contains("1.10") || Bukkit.getVersion().contains("1.7.10")))
getLogger().warning("Minecraft " + Bukkit.getVersion() + " hasn't been tested yet!");

this.startSendingThread();
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: AsyncKeepAlive
main: com.ishland.bukkit.AsyncKeepAlive.main.Launcher
version: 0.3-SNAPSHOT
version: 0.3
author: ishland
description: AsyncKeepAlive is a plugin that keep the players' connections alive
depend: [ProtocolLib]
Expand Down

0 comments on commit cbed6a6

Please sign in to comment.