Sprite netsync purge wave 2 (#6560)

This commit is contained in:
metalgearsloth
2022-02-13 09:18:00 +11:00
committed by GitHub
parent 02396e446d
commit 0a28df0cd7
33 changed files with 44 additions and 3 deletions

View File

@@ -2,6 +2,7 @@ using System;
using Robust.Shared.Maths;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization.Manager.Attributes;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
using Robust.Shared.ViewVariables;
namespace Content.Shared.Weapons.Melee
@@ -18,7 +19,7 @@ namespace Content.Shared.Weapons.Melee
public string State { get; } = string.Empty;
[ViewVariables]
[DataField("prototype")]
[DataField("prototype", customTypeSerializer:typeof(PrototypeIdSerializer<EntityPrototype>))]
public string Prototype { get; } = "WeaponArc";
[ViewVariables]