1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-22 22:34:43 +02:00

Patch null error in /home after recent update.

This commit is contained in:
KHobbits
2012-05-22 00:39:23 +01:00
parent e4e1c950b5
commit b841878a33
2 changed files with 12 additions and 11 deletions

View File

@@ -278,13 +278,8 @@ public class Teleport implements Runnable, ITeleport
now(new Target(user.getLastLocation()), TeleportCause.COMMAND); now(new Target(user.getLastLocation()), TeleportCause.COMMAND);
} }
public void home(IUser user, String home, Trade chargeFor) throws Exception public void home(Location loc, Trade chargeFor) throws Exception
{ {
final Location loc = user.getHome(home);
if (loc == null)
{
throw new NotEnoughArgumentsException();
}
teleport(new Target(loc), chargeFor, TeleportCause.COMMAND); teleport(new Target(loc), chargeFor, TeleportCause.COMMAND);
} }
} }

View File

@@ -1,6 +1,7 @@
package com.earth2me.essentials.commands; package com.earth2me.essentials.commands;
import static com.earth2me.essentials.I18n._; import static com.earth2me.essentials.I18n._;
import com.earth2me.essentials.Teleport;
import com.earth2me.essentials.Trade; import com.earth2me.essentials.Trade;
import com.earth2me.essentials.User; import com.earth2me.essentials.User;
import com.earth2me.essentials.Util; import com.earth2me.essentials.Util;
@@ -96,11 +97,16 @@ public class Commandhome extends EssentialsCommand
private void goHome(final User user, final User player, final String home, final Trade charge) throws Exception private void goHome(final User user, final User player, final String home, final Trade charge) throws Exception
{ {
if (user.getWorld() != player.getHome(home).getWorld() && ess.getSettings().isWorldTeleportPermissions() final Location loc = player.getHome(home);
&& !user.isAuthorized("essentials.world." + player.getHome(home).getWorld().getName())) if (loc == null)
{ {
throw new Exception(_("noPerm", "essentials.world." + player.getHome(home).getWorld().getName())); throw new NotEnoughArgumentsException();
} }
user.getTeleport().home(player, home, charge); if (user.getWorld() != loc.getWorld() && ess.getSettings().isWorldTeleportPermissions()
&& !user.isAuthorized("essentials.world." + loc.getWorld().getName()))
{
throw new Exception(_("noPerm", "essentials.world." + loc.getWorld().getName()));
}
user.getTeleport().home(loc, charge);
} }
} }