From 1fb9359d9072cf6ed857e68be948271ae22ca2f5 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Thu, 23 Apr 2020 16:46:55 +0200 Subject: [PATCH] Fix HeldPrefix having different name on client. --- Content.Client/GameObjects/Components/Items/ItemComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/GameObjects/Components/Items/ItemComponent.cs b/Content.Client/GameObjects/Components/Items/ItemComponent.cs index f1b01f57ff..4140314c55 100644 --- a/Content.Client/GameObjects/Components/Items/ItemComponent.cs +++ b/Content.Client/GameObjects/Components/Items/ItemComponent.cs @@ -51,7 +51,7 @@ namespace Content.Client.GameObjects base.ExposeData(serializer); serializer.DataFieldCached(ref RsiPath, "sprite", null); - serializer.DataFieldCached(ref _equippedPrefix, "prefix", null); + serializer.DataFieldCached(ref _equippedPrefix, "HeldPrefix", null); } protected RSI GetRSI()