Skip to content

Commit

Permalink
Add NetworkedComponent attribute to TradeCrateComp
Browse files Browse the repository at this point in the history
  • Loading branch information
whatston3 committed Dec 26, 2024
1 parent add6762 commit 5bb6bc0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Content.Shared/_NF/Trade/TradeCrateComponent.cs
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
using System.Threading;
using Content.Shared.Cargo;
using Robust.Shared.GameStates;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom;

namespace Content.Shared._NF.Trade;

/// <summary>
/// This is used to mark an entity to be used as a trade crate
/// </summary>
[RegisterComponent, AutoGenerateComponentState, AutoGenerateComponentPause, Access(typeof(SharedCargoSystem))]
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, AutoGenerateComponentPause, Access(typeof(SharedCargoSystem))]
public sealed partial class TradeCrateComponent : Component
{
/// <summary>
Expand Down

0 comments on commit 5bb6bc0

Please sign in to comment.