Skip to content

Commit

Permalink
Fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
dvir001 committed Jan 1, 2024
1 parent 9aaf244 commit c2606fe
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 41 deletions.
2 changes: 1 addition & 1 deletion Content.Server/_NF/SizeAttribute/SizeAttributeSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using Robust.Shared.Physics;
using Robust.Shared.Physics.Collision.Shapes;
using Robust.Shared.Physics.Systems;
using Content.Server.Item.PseudoItem;
using Content.Shared.Item.PseudoItem;

namespace Content.Server.SizeAttribute
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
using Content.Shared._NF.Cloning;

namespace Content.Shared.Item.PseudoItem;

/// <summary>
/// For entities that behave like an item under certain conditions,
/// but not under most conditions.
/// </summary>
[RegisterComponent]
public sealed partial class PseudoItemComponent : Component
public sealed partial class PseudoItemComponent : Component, ITransferredByCloning
{
[DataField("size")]
public int Size = 120;
Expand Down
10 changes: 10 additions & 0 deletions Content.Shared/Nyanotrasen/Item/PseudoItemInsertDoAfterEvent.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
using Robust.Shared.Serialization;
using Content.Shared.DoAfter;

namespace Content.Shared.Item.PseudoItem;


[Serializable, NetSerializable]
public sealed partial class PseudoItemInsertDoAfterEvent : SimpleDoAfterEvent
{
}
38 changes: 0 additions & 38 deletions Resources/Prototypes/Nyanotrasen/Entities/Mobs/Player/felinid.yml

This file was deleted.

0 comments on commit c2606fe

Please sign in to comment.