summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorementalo <ementalo@e251c2fe-e539-e718-e476-b85c1f46cddb>2011-05-06 23:58:06 +0000
committerementalo <ementalo@e251c2fe-e539-e718-e476-b85c1f46cddb>2011-05-06 23:58:06 +0000
commit35d03143e0986b1b7c4430083b4ce0b16e3b875d (patch)
treef90afcb34166fd930e8c35e8561cff6f110e1153
parenteaae9e7c75a96bb71b17595480a2bfbdb14febaa (diff)
downloadEssentials-35d03143e0986b1b7c4430083b4ce0b16e3b875d.tar
Essentials-35d03143e0986b1b7c4430083b4ce0b16e3b875d.tar.gz
Essentials-35d03143e0986b1b7c4430083b4ce0b16e3b875d.tar.lz
Essentials-35d03143e0986b1b7c4430083b4ce0b16e3b875d.tar.xz
Essentials-35d03143e0986b1b7c4430083b4ce0b16e3b875d.zip
[trunk] possible tpa fix, can't test
git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1358 e251c2fe-e539-e718-e476-b85c1f46cddb
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandtpaccept.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandtpaccept.java b/Essentials/src/com/earth2me/essentials/commands/Commandtpaccept.java
index cef410afe..bd59bd23c 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandtpaccept.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandtpaccept.java
@@ -33,7 +33,7 @@ public class Commandtpaccept extends EssentialsCommand
user.canAfford(this);
user.sendMessage("§7Teleport request accepted.");
p.sendMessage("§7Teleport request accepted.");
- user.getTeleport().teleport(user, this.getName());
+ p.getTeleport().teleport(user, this.getName());
}
user.requestTeleport(null, false);
}