Fix throwing in space.

This commit is contained in:
Pieter-Jan Briers
2020-07-08 18:28:59 +02:00
parent e815de7563
commit 023fd60054
6 changed files with 17 additions and 3 deletions

View File

@@ -25,7 +25,8 @@ namespace Content.Server.GameObjects
{
[RegisterComponent]
[ComponentReference(typeof(StoreableComponent))]
public class ItemComponent : StoreableComponent, IInteractHand, IExAct, IEquipped, IUnequipped
[ComponentReference(typeof(IItemComponent))]
public class ItemComponent : StoreableComponent, IInteractHand, IExAct, IEquipped, IUnequipped, IItemComponent
{
public override string Name => "Item";
public override uint? NetID => ContentNetIDs.ITEM;