diff --git a/Content.Client/_CP14/Knowledge/ClientCP14KnowledgeSystem.cs b/Content.Client/_CP14/Knowledge/ClientCP14KnowledgeSystem.cs index 5c43fbda72..e493caa375 100644 --- a/Content.Client/_CP14/Knowledge/ClientCP14KnowledgeSystem.cs +++ b/Content.Client/_CP14/Knowledge/ClientCP14KnowledgeSystem.cs @@ -1,11 +1,12 @@ using Content.Shared._CP14.Knowledge; +using Content.Shared._CP14.Knowledge.Events; using Content.Shared._CP14.Knowledge.Prototypes; using Robust.Client.Player; using Robust.Shared.Prototypes; namespace Content.Client._CP14.Knowledge; -public sealed partial class ClientCP14KnowledgeSystem : SharedCP14KnowledgeSystem +public sealed class ClientCP14KnowledgeSystem : SharedCP14KnowledgeSystem { [Dependency] private readonly IPlayerManager _players = default!; @@ -24,7 +25,7 @@ public sealed partial class ClientCP14KnowledgeSystem : SharedCP14KnowledgeSyste if (entity is null) return; - RaiseNetworkEvent(new RequestKnowledgeInfoEvent(GetNetEntity(entity.Value))); + RaiseNetworkEvent(new CP14RequestKnowledgeInfoEvent(GetNetEntity(entity.Value))); } private void OnCharacterKnowledgeEvent(CP14KnowledgeInfoEvent msg, EntitySessionEventArgs args) @@ -37,6 +38,6 @@ public sealed partial class ClientCP14KnowledgeSystem : SharedCP14KnowledgeSyste public readonly record struct KnowledgeData( EntityUid Entity, - HashSet> AllKnowledges + HashSet> AllKnowledge ); } diff --git a/Content.Client/_CP14/TravelingStoreShip/CP14StoreProductControl.xaml b/Content.Client/_CP14/TravelingStoreShip/CP14StoreProductControl.xaml index a599bca8f7..1637e572e2 100644 --- a/Content.Client/_CP14/TravelingStoreShip/CP14StoreProductControl.xaml +++ b/Content.Client/_CP14/TravelingStoreShip/CP14StoreProductControl.xaml @@ -1,11 +1,19 @@