diff options
author | KHobbits <rob@khobbits.co.uk> | 2011-10-04 10:16:35 +0100 |
---|---|---|
committer | KHobbits <rob@khobbits.co.uk> | 2011-10-04 10:16:35 +0100 |
commit | 531f40ceee55d44528f35783d5572a5b5c5292e9 (patch) | |
tree | 9fb9338f42b825b3a3d8e7f67ab23d5f59a3c69b | |
parent | b672d38db8ae4961f88a674c490950c2e5b0f7b4 (diff) | |
download | Essentials-531f40ceee55d44528f35783d5572a5b5c5292e9.tar Essentials-531f40ceee55d44528f35783d5572a5b5c5292e9.tar.gz Essentials-531f40ceee55d44528f35783d5572a5b5c5292e9.tar.lz Essentials-531f40ceee55d44528f35783d5572a5b5c5292e9.tar.xz Essentials-531f40ceee55d44528f35783d5572a5b5c5292e9.zip |
Less dupe code on last commit.
-rw-r--r-- | Essentials/src/com/earth2me/essentials/Teleport.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Essentials/src/com/earth2me/essentials/Teleport.java b/Essentials/src/com/earth2me/essentials/Teleport.java index 845f9c3a3..b4dd819aa 100644 --- a/Essentials/src/com/earth2me/essentials/Teleport.java +++ b/Essentials/src/com/earth2me/essentials/Teleport.java @@ -256,7 +256,7 @@ public class Teleport implements Runnable public void back() throws Exception { - now(new Target(user.getLastLocation())); + now(user.getLastLocation()); } public void home(IUser user, String home, Trade chargeFor) throws Exception |