mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-12-28 12:07:38 +01:00
Homes tolower.
Max homes fix.
This commit is contained in:
parent
27adc21446
commit
7df5098bf6
@ -282,11 +282,12 @@ public class EssentialsUpgrade
|
||||
final String defworld = (String)config.getProperty("home.default");
|
||||
final Location defloc = config.getLocation("home.worlds." + defworld, ess.getServer());
|
||||
|
||||
String worldName = defloc.getWorld().getName().toLowerCase();
|
||||
;
|
||||
config.setProperty("homes.home", defloc);
|
||||
|
||||
List<String> worlds = config.getKeys("home.worlds");
|
||||
Location loc;
|
||||
String worldName;
|
||||
|
||||
if (worlds == null)
|
||||
{
|
||||
|
@ -36,7 +36,7 @@ public class Commanddelhome extends EssentialsCommand
|
||||
user = getPlayer(server, args, 0);
|
||||
name = args[1];
|
||||
}
|
||||
user.delHome(name);
|
||||
sender.sendMessage(Util.format("deleteHome", args[0]));
|
||||
user.delHome(name.toLowerCase());
|
||||
sender.sendMessage(Util.format("deleteHome", name));
|
||||
}
|
||||
}
|
||||
|
@ -40,7 +40,7 @@ public class Commandhome extends EssentialsCommand
|
||||
}
|
||||
try
|
||||
{
|
||||
user.getTeleport().home(u, homeName, charge);
|
||||
user.getTeleport().home(u, homeName.toLowerCase(), charge);
|
||||
}
|
||||
catch (NotEnoughArgumentsException e)
|
||||
{
|
||||
|
@ -21,10 +21,10 @@ public class Commandsethome extends EssentialsCommand
|
||||
{
|
||||
if (user.isAuthorized("essentials.sethome.multiple"))
|
||||
{
|
||||
if ((user.isAuthorized("essentials.sethome.multiple.unlimited")) || (user.getHomes().size() <= ess.getSettings().getMultipleHomes())
|
||||
|| (user.getHomes().contains(args[0])))
|
||||
if ((user.isAuthorized("essentials.sethome.multiple.unlimited")) || (user.getHomes().size() < ess.getSettings().getMultipleHomes())
|
||||
|| (user.getHomes().contains(args[0].toLowerCase())))
|
||||
{
|
||||
user.setHome(args[0]);
|
||||
user.setHome(args[0].toLowerCase());
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -46,7 +46,7 @@ public class Commandsethome extends EssentialsCommand
|
||||
{
|
||||
throw new Exception(Util.i18n("playerNotFound"));
|
||||
}
|
||||
usersHome.setHome(args[1], user.getLocation());
|
||||
usersHome.setHome(args[1].toLowerCase(), user.getLocation());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -21,6 +21,7 @@ public class EssentialsSign
|
||||
{
|
||||
private static final Set<Material> EMPTY_SET = new HashSet<Material>();
|
||||
protected transient final String signName;
|
||||
//TODO: Add these settings to messages
|
||||
private static final String FORMAT_SUCCESS = "§1[%s]";
|
||||
private static final String FORMAT_TEMPLATE = "[%s]";
|
||||
private static final String FORMAT_FAIL = "§4[%s]";
|
||||
|
Loading…
Reference in New Issue
Block a user