From 9b07ecaa67550577b72366eb03bcac291a80698e Mon Sep 17 00:00:00 2001 From: CoderCow Date: Mon, 17 Feb 2014 15:23:35 +0100 Subject: [PATCH] Allowed for ingame hair color changes too. --- TShockAPI/GetDataHandlers.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/TShockAPI/GetDataHandlers.cs b/TShockAPI/GetDataHandlers.cs index f933c81f..5dfdcfb6 100755 --- a/TShockAPI/GetDataHandlers.cs +++ b/TShockAPI/GetDataHandlers.cs @@ -1410,7 +1410,8 @@ namespace TShockAPI } if (args.Player.ReceivedInfo) { - // Since Terraria 1.2.3 these settings can be changed afterwards. + // Since Terraria 1.2.3 these character properties can change ingame. + args.Player.TPlayer.hairColor = hairColor; args.Player.TPlayer.hairDye = hairDye; args.Player.TPlayer.pantsColor = pantsColor; args.Player.TPlayer.shirtColor = shirtColor;