1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-15 11:04:29 +02:00

Allow the Essentials module to compile again.

This commit is contained in:
KHobbits
2014-02-02 18:19:29 +00:00
parent 4dc94cc686
commit bc438f61da
2 changed files with 9 additions and 2 deletions

View File

@@ -42,6 +42,13 @@
</ciManagement> </ciManagement>
<dependencies> <dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.7.2-R0.3-SNAPSHOT</version>
<scope>system</scope>
<systemPath>${project.basedir}/../lib/bukkit.jar</systemPath>
</dependency>
<dependency> <dependency>
<groupId>BOSEconomy</groupId> <groupId>BOSEconomy</groupId>
<artifactId>BOSEconomy</artifactId> <artifactId>BOSEconomy</artifactId>

View File

@@ -872,7 +872,7 @@ public abstract class UserData extends PlayerExtension implements IConf
public void trackUUID() public void trackUUID()
{ {
config.setProperty("uuid", base.getUniqueId()); config.setProperty("uuid", base.getUniqueId().toString());
config.save(); config.save();
} }