Version is now 1.3.04-dev modified comments/changelog

This commit is contained in:
nossr50 2012-03-23 12:34:23 -07:00
parent 752cc88270
commit 46cdfe992f
4 changed files with 6 additions and 4 deletions

View File

@ -7,6 +7,9 @@ Key:
! Change
- Removal
Version 1.3.04-dev
! Changed MySQL to reload all player information on reconnection
Version 1.3.03
+ Added Ocelots to Taming XP tables
+ Added ability to summon Ocelots with Call of the Wild

View File

@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.gmail.nossr50.mcMMO</groupId>
<artifactId>mcMMO</artifactId>
<version>1.3.03</version>
<version>1.3.04-dev</version>
<name>mcMMO</name>
<url>https://github.com/mcMMO-Dev/mcMMO</url>
<issueManagement>

View File

@ -256,9 +256,8 @@ public class Database {
if (!isConnected()) {
connect();
if(isConnected()) {
//Save/Remove all profiles
for(PlayerProfile x : Users.players.values()) {
x.save();
x.save(); //Save all profiles
}
Users.players.clear(); //Clear the profiles
for(Player x : Bukkit.getOnlinePlayers()) {