Fix /reply not properly replying to the last person who you whispered/whispered to you.

This commit is contained in:
Deathmax 2011-07-07 21:38:28 +08:00
parent cf7323d653
commit ec39d41654

View file

@ -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;
}
}