Fixes bug with PrototypeIdListSerializer where lists wouldn't be copied at all.

This commit is contained in:
Vera Aguilera Puerto
2021-05-19 12:12:13 +02:00
parent 572eb01290
commit 88b3a557da
@@ -105,7 +105,7 @@ namespace Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Pro
bool skipHook,
ISerializationContext? context)
{
return new();
return new(source);
}
}
}