Skip to content

Commit

Permalink
RELEASE VERSION 3.8 RELEASE CANDIDATE 1
Browse files Browse the repository at this point in the history
Ready for 1.16.1 testing...

Closes #146
  • Loading branch information
JustBru00 committed Jun 27, 2020
1 parent 57b8251 commit 1e7bc85
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="lib" path="C:/Users/justb/OneDrive/Coding/Test_Server_1.12/plugins/Vault.jar"/>
<classpathentry kind="lib" path="C:/Users/justb/Desktop/Test_Server_1.15/spigot-1.15.2.jar">
<classpathentry kind="lib" path="C:/Users/justb/Desktop/Test_Server_1.16/spigot-1.16.1.jar">
<attributes>
<attribute name="javadoc_location" value="jar:file:/C:/Users/justb/Desktop/Coding/Downloaded%20Java%20Docs%20for%20Spigot/spigot-api-1.15.1-R0.1-20191226.220716-25-javadoc.jar!/"/>
<attribute name="javadoc_location" value="jar:file:/C:/Users/justb/Desktop/Coding/Downloaded%20Java%20Docs%20for%20Spigot/spigot-api-1.16.1-R0.1-20200625.005128-1-javadoc.jar!/"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="bin"/>
Expand Down
9 changes: 4 additions & 5 deletions src/com/gmail/justbru00/epic/rename/main/v3/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -257,17 +257,16 @@ public static void checkServerVerison() {
USE_NEW_GET_HAND = false;
MC_VERSION = MCVersion.OLDER_THAN_ONE_DOT_NINE;
Debug.send("[Main#checkServerVersion()] Using methods for version 1.7 or 1.8");
Messager.msgConsole("&c[CheckServerVersion] Server running 1.7 or 1.8. EpicRename will stop supporting these versions in the future.");
} else if ((version.contains("1.9")) || (version.contains("1.10"))
|| (version.contains("1.11")) || version.contains("1.12") ||
version.contains("1.13") || version.contains("1.14") ||
version.contains("1.15")) {
|| (version.contains("1.11")) || version.contains("1.12")) {
USE_NEW_GET_HAND = true;
MC_VERSION = MCVersion.NEWER_THAN_ONE_DOT_EIGHT;
Debug.send("[Main#checkServerVersion()] Using methods for version 1.9+");
Messager.msgConsole("&c[CheckServerVersion] Server running 1.9-1.12. EpicRename may stop supporting these versions in the future.");
} else {
USE_NEW_GET_HAND = true;
MC_VERSION = MCVersion.NEWER_THAN_ONE_DOT_EIGHT;
Messager.msgConsole("[Main#checkServerVersion()] Server running unknown version. Assuming newer than 1.13");
Debug.send("[Main#checkServerVersion()] Using methods for version 1.9+");
} // End of Server Version Check
}

Expand Down
2 changes: 1 addition & 1 deletion src/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: EpicRename
main: com.gmail.justbru00.epic.rename.main.v3.Main
version: 3.8-INDEV
version: 3.8-RC1
description: Performs different item modifications with easy to use commands.
authors: [Justin Brubaker,JustBru00,jayoevans]
softdepend: [Vault]
Expand Down

0 comments on commit 1e7bc85

Please sign in to comment.