summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsnowleo <snowleo@e251c2fe-e539-e718-e476-b85c1f46cddb>2011-05-15 02:39:59 +0000
committersnowleo <snowleo@e251c2fe-e539-e718-e476-b85c1f46cddb>2011-05-15 02:39:59 +0000
commit86dce6e092fb84575f755836f1d3fde3d5f104da (patch)
tree8b14d8cdfee3908dc55a5c0a426d5daf12be301a
parente50cb7d86ac78344f6891ae2df685a1c6cca28a1 (diff)
downloadEssentials-86dce6e092fb84575f755836f1d3fde3d5f104da.tar
Essentials-86dce6e092fb84575f755836f1d3fde3d5f104da.tar.gz
Essentials-86dce6e092fb84575f755836f1d3fde3d5f104da.tar.lz
Essentials-86dce6e092fb84575f755836f1d3fde3d5f104da.tar.xz
Essentials-86dce6e092fb84575f755836f1d3fde3d5f104da.zip
/home: Allows to go to offline players home.
git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1473 e251c2fe-e539-e718-e476-b85c1f46cddb
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandhome.java15
1 files changed, 14 insertions, 1 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandhome.java b/Essentials/src/com/earth2me/essentials/commands/Commandhome.java
index 77fc32840..f82b12421 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandhome.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandhome.java
@@ -2,6 +2,7 @@ package com.earth2me.essentials.commands;
import org.bukkit.Server;
import com.earth2me.essentials.User;
+import com.earth2me.essentials.Util;
public class Commandhome extends EssentialsCommand
@@ -17,7 +18,19 @@ public class Commandhome extends EssentialsCommand
user.canAfford(this);
if(args.length > 0 && user.isAuthorized("essentials.home.others"))
{
- User u = getPlayer(server, args, 0);
+ User u;
+ try
+ {
+ u = getPlayer(server, args, 0);
+ }
+ catch(NoSuchFieldException ex)
+ {
+ u = ess.getOfflineUser(args[0]);
+ }
+ if (u == null)
+ {
+ throw new Exception(Util.i18n("playerNotFound"));
+ }
user.getTeleport().home(u, this.getName());
return;
}