Files
OldThink/Content.Shared/_White/Keyhole/KeyInsertEvent.cs
Aviu00 daffcf9a2d Fixes and stuff (#229)
* - add: Add rites description.

* - fix: Fix fuel tank explosion.

* - tweak: Jug can attack now.

* - tweak: Less material size.

* - fix: Translation fix.

* - tweak: Dead people are collideable.

* - tweak: Less small mobs damage.

* - add: You can now shoot yourself.

* - add: Mood effect for felinids.

* Revert "- fix: Fix fuel tank explosion."

This reverts commit 72d9d6d2c5a3e579c50e8fa63a58e6d989dbe9e9.

* - fix: Keyhole fixes.

* - tweak: Doors now cost less material.

* - fix: Change loc.
2024-03-24 09:43:51 +00:00

17 lines
325 B
C#

using Content.Shared.DoAfter;
using Robust.Shared.Serialization;
namespace Content.Shared._White.Keyhole;
[Serializable, NetSerializable]
public sealed partial class KeyInsertDoAfterEvent : SimpleDoAfterEvent
{
public int FormId;
public KeyInsertDoAfterEvent(int formId)
{
FormId = formId;
}
}