From ec39d4165420e04f0b9c6e13efc30af7a840a640 Mon Sep 17 00:00:00 2001 From: Deathmax Date: Thu, 7 Jul 2011 21:38:28 +0800 Subject: [PATCH] Fix /reply not properly replying to the last person who you whispered/whispered to you. --- TShockAPI/Commands.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/TShockAPI/Commands.cs b/TShockAPI/Commands.cs index c18ea3a1..520defb1 100755 --- a/TShockAPI/Commands.cs +++ b/TShockAPI/Commands.cs @@ -1472,6 +1472,7 @@ namespace TShockAPI plr.SendMessage("(Whisper From)" + "<" + args.Player.Name + ">" + msg, Color.MediumPurple); args.Player.SendMessage("(Whisper To)" + "<" + plr.Name + ">" + msg, Color.MediumPurple); plr.LastWhisper = args.Player; + args.Player.LastWhisper = plr; } }