This commit is contained in:
Pieter-Jan Briers
2018-05-27 23:27:32 +02:00
parent e36033a3ac
commit 77222824c3
5 changed files with 2751 additions and 10 deletions

View File

@@ -50,9 +50,12 @@ namespace Content.Server.GameObjects
base.ExposeData(serializer);
serializer.DataField(ref orderedHands, "hands", new List<string>(0));
foreach (var handsname in orderedHands)
if (serializer.Reading)
{
AddHand(handsname);
foreach (var handsname in orderedHands)
{
AddHand(handsname);
}
}
}