diff --git a/README.md b/README.md
index ad1a1be0..d8bc8084 100644
--- a/README.md
+++ b/README.md
@@ -16,23 +16,25 @@ Arcturus Morningstar is as a fork of Arcturus Emulator by TheGeneral. Arcturus M
[![image](https://img.shields.io/discord/557240155040251905?style=for-the-badge&logo=discord&color=7289DA&label=KREWS&logoColor=fff)](https://discord.gg/BzfFsTp)
## Download ##
-[![image](https://img.shields.io/badge/STABLE%20RELEASES-3.5.1-success.svg?style=for-the-badge&logo=appveyor)](https://git.krews.org/morningstar/Arcturus-Community/-/releases)
+[![image](https://img.shields.io/badge/STABLE%20RELEASES-3.5.2-success.svg?style=for-the-badge&logo=appveyor)](https://git.krews.org/morningstar/Arcturus-Community/-/releases)
[![image](https://img.shields.io/badge/DEVELOPER%20BUILDS-4.0-red.svg?style=for-the-badge&logo=appveyor)](https://git.krews.org/morningstar/Arcturus-Community/-/jobs) *
-[![image](https://img.shields.io/badge/RECOMMENDED%20PLUGINS-blue.svg?style=for-the-badge&logo=)](https://git.krews.org/official-plugins)
+[![image](https://img.shields.io/badge/RECOMMENDED%20PLUGINS-blue.svg?style=for-the-badge&logo=)](https://git.krews.org/morningstar/archive)
-###### * Note to use these builds you will need to run any database updates from [here](https://git.krews.org/morningstar/Arcturus-Community/-/tree/dev/sqlupdates) #######
+###### *Note: MS 4.0 is expected to have changes to the Plugin API, backwards compatibility with Plugins is dependant on the plugin developer. #######
### Branches ###
-There are two main branches in use on the Arcturus Morningstar git. Below the pros an
+There are two main branches in use on the Arcturus Morningstar git. Developers should target the 4.x branch for merge requests.
-| master | Tested on a production hotel and is stable for every day use with no known serious exploits. |
-| ------------- | ------------- |
+| master * | The stable 3.x branch of Arcturus Morningstar. |
+|----------|------------------------------------------------|
+###### * Note: This branch is no longer being maintained except for Security Patches #######
-| dev | The most up-to-date, but features may not work as intended. |
-| ------------- | ------------- |
+| dev* | The 4.x branch of Arcturus Morningstar. |
+|------|-----------------------------------------|
+###### * Note: This version is currently untested on a production hotel and is not recommended for daily use until a release has been made. #######
@@ -45,7 +47,7 @@ There is no set timeframe on when new versions will be released or when the stab
You can report problems via the [Issue Tracker](https://git.krews.org/morningstar/Arcturus-Community/issues)*
###### * When making an bug report or a feature request use the template we provide so that it can be categorized correctly and we have more information to replicate a bug or implement a feature correctly. ######
#### Can I contribute code to this project? ####
-Of Course! if you have fixed a bug from the git please feel free to do a [merge request](https://git.krews.org/morningstar/Arcturus-Community/issues)*
+Of Course! Please target the developer branch if you have fixed a bug from the git, and feel free to do a [merge request](https://git.krews.org/morningstar/Arcturus-Community/issues)*
###### * Anyone is allowed to fork the project and make pull requests, we make no guarantee that pull requests will be approved into the project. Please Do NOT push code which does not replicate behaviour on habbo.com, instead make the behaviour configurable or as a plugin. ######
@@ -106,7 +108,6 @@ If we ever are to make paid features or plugins, we will not prevent or discoura
- Stankman
- Laynester
-
diff --git a/pom.xml b/pom.xml
index c398cce6..659d03e9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
com.eu.habbo
Habbo
- 3.5.1
+ 3.5.2
UTF-8
diff --git a/src/main/java/com/eu/habbo/Emulator.java b/src/main/java/com/eu/habbo/Emulator.java
index 9dc80656..3c22b00f 100644
--- a/src/main/java/com/eu/habbo/Emulator.java
+++ b/src/main/java/com/eu/habbo/Emulator.java
@@ -37,7 +37,7 @@ public final class Emulator {
public final static int MAJOR = 3;
public final static int MINOR = 5;
- public final static int BUILD = 1;
+ public final static int BUILD = 2;
public final static String PREVIEW = "";
public static final String version = "Arcturus Morningstar" + " " + MAJOR + "." + MINOR + "." + BUILD + " " + PREVIEW;
@@ -115,11 +115,13 @@ public final class Emulator {
System.out.println("Warning, this is a beta build, this means that there may be unintended consequences so make sure you take regular backups while using this build. If you notice any issues you should make an issue on the Krews Git.");
promptEnterKey();
}
- LOGGER.info("eek. Has it really been a year?");
+ System.out.println("");
+ LOGGER.warn("Arcturus Morningstar 3.x is no longer accepting merge requests. Please target MS4 branches if you wish to contribute.");
+ LOGGER.info("Follow our development at https://git.krews.org/morningstar/Arcturus-Community, ");
+ System.out.println("");
LOGGER.info("This project is for educational purposes only. This Emulator is an open-source fork of Arcturus created by TheGeneral.");
LOGGER.info("Version: {}", version);
LOGGER.info("Build: {}", build);
- LOGGER.info("Follow our development at https://git.krews.org/morningstar/Arcturus-Community");
long startTime = System.nanoTime();