Fix some comps for serv4 (#19511)

This commit is contained in:
metalgearsloth 2023-08-25 13:45:54 +10:00 committed by GitHub
parent 7c45d0e2f5
commit a8bac1f91f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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
/// </summary>
public sealed class BuyerDepartmentCondition : ListingCondition
public sealed partial class BuyerDepartmentCondition : ListingCondition
{
/// <summary>
/// A whitelist of department prototypes that can purchase this listing. Only one needs to be found.

View File

@ -7,7 +7,7 @@ namespace Content.Shared.Weapons.Reflect;
/// Reflection events will then be relayed.
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed class ReflectUserComponent : Component
public sealed partial class ReflectUserComponent : Component
{
}