From 35d03143e0986b1b7c4430083b4ce0b16e3b875d Mon Sep 17 00:00:00 2001 From: ementalo Date: Fri, 6 May 2011 23:58:06 +0000 Subject: [PATCH] [trunk] possible tpa fix, can't test git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1358 e251c2fe-e539-e718-e476-b85c1f46cddb --- .../src/com/earth2me/essentials/commands/Commandtpaccept.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }