From a8bac1f91f7cee066fa4318f39c0daa53621cc9e Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Fri, 25 Aug 2023 13:45:54 +1000 Subject: [PATCH] Fix some comps for serv4 (#19511) --- Content.Server/Store/Conditions/BuyerDepartmentCondition.cs | 2 +- Content.Shared/Weapons/Reflect/ReflectUserComponent.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Store/Conditions/BuyerDepartmentCondition.cs b/Content.Server/Store/Conditions/BuyerDepartmentCondition.cs index 788764ce95..6d7f50f2c4 100644 --- a/Content.Server/Store/Conditions/BuyerDepartmentCondition.cs +++ b/Content.Server/Store/Conditions/BuyerDepartmentCondition.cs @@ -11,7 +11,7 @@ namespace Content.Server.Store.Conditions; /// Allows a store entry to be filtered out based on the user's job. /// Supports both blacklists and whitelists /// -public sealed class BuyerDepartmentCondition : ListingCondition +public sealed partial class BuyerDepartmentCondition : ListingCondition { /// /// A whitelist of department prototypes that can purchase this listing. Only one needs to be found. diff --git a/Content.Shared/Weapons/Reflect/ReflectUserComponent.cs b/Content.Shared/Weapons/Reflect/ReflectUserComponent.cs index bcb450c759..44fe60813e 100644 --- a/Content.Shared/Weapons/Reflect/ReflectUserComponent.cs +++ b/Content.Shared/Weapons/Reflect/ReflectUserComponent.cs @@ -7,7 +7,7 @@ namespace Content.Shared.Weapons.Reflect; /// Reflection events will then be relayed. /// [RegisterComponent, NetworkedComponent] -public sealed class ReflectUserComponent : Component +public sealed partial class ReflectUserComponent : Component { }