* DoAfter, dead and stun check, DragDropOn * Not ignored anymore * Copied comment deleted * Herbert's an ass * Woops Co-authored-by: Metal Gear Sloth <metalgearsloth@gmail.com>
17 lines
448 B
C#
17 lines
448 B
C#
#nullable enable
|
|
using Content.Shared.GameObjects.Components.Kitchen;
|
|
using Content.Shared.Interfaces.GameObjects.Components;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Client.GameObjects.Components.Kitchen
|
|
{
|
|
[RegisterComponent]
|
|
internal sealed class KitchenSpikeComponent : SharedKitchenSpikeComponent
|
|
{
|
|
public override bool DragDropOn(DragDropEventArgs eventArgs)
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|