Fixing home list.

This commit is contained in:
KHobbits 2012-02-21 22:12:37 +00:00
parent ed7fe9213f
commit 6d46fc66ce

View file

@ -2,6 +2,7 @@ package com.earth2me.essentials;
import java.io.File;
import java.util.*;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.bukkit.Location;
import org.bukkit.Material;
@ -94,17 +95,7 @@ public abstract class UserData extends PlayerExtension implements IConf
private Map<String, Object> _getHomes()
{
Object o = config.getProperty("homes");
if (o instanceof Map)
{
return (Map<String, Object>)o;
}
else
{
return new HashMap<String, Object>();
}
return config.getConfigurationSection("homes").getValues(false);
}
public Location getHome(String name) throws Exception
@ -154,6 +145,7 @@ public abstract class UserData extends PlayerExtension implements IConf
public List<String> getHomes()
{
ess.getLogger().log(Level.INFO, "player " + this.getName() + " homecount: " + homes.size());
return new ArrayList(homes.keySet());
}