MIT/CC0-1.0
This commit is contained in:
parent
01812253c5
commit
d2e65e8b5c
|
|
@ -1,6 +1,6 @@
|
|||
// SPDX-FileCopyrightText: 2026 Janet Blackquill <uhhadd@gmail.com>
|
||||
//
|
||||
// SPDX-License-Identifier: LicenseRef-Wallening
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
using System.Numerics;
|
||||
using Content.Shared._ST.Interaction;
|
||||
|
|
|
|||
|
|
@ -150,7 +150,7 @@ public sealed partial class HandPlaceholderSystem : EntitySystem
|
|||
}
|
||||
|
||||
_hands.DoPickup(user, hand, target, hands); // Force pickup - empty hands are not okay
|
||||
_interaction.DoContactInteraction(user, target); // allow for forensics and other systems to work (why does hands system not do this???)
|
||||
_interaction.DoContactInteraction(user, target, null, true); // allow for forensics and other systems to work (why does hands system not do this???) // Stellar - interaction particles
|
||||
|
||||
SetPlaceholder(target, ent);
|
||||
SetEnabled(target, true);
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
// SPDX-FileCopyrightText: 2026 Janet Blackquill <uhhadd@gmail.com>
|
||||
//
|
||||
// SPDX-License-Identifier: LicenseRef-Wallening
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,15 +1,13 @@
|
|||
# SPDX-FileCopyrightText: 2026 Janet Blackquill <uhhadd@gmail.com>
|
||||
#
|
||||
# SPDX-License-Identifier: LicenseRef-Wallening
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
- type: entity
|
||||
id: StellarInteractionParticle
|
||||
categories: [ HideSpawnMenu ]
|
||||
components:
|
||||
- type: TimedDespawn
|
||||
# ES START
|
||||
lifetime: 1.1
|
||||
# ES END
|
||||
- type: Sprite
|
||||
sprite: _ST/Effects/interaction.rsi
|
||||
state: hand
|
||||
|
|
@ -18,6 +16,3 @@
|
|||
- type: Tag
|
||||
tags:
|
||||
- HideContextMenu
|
||||
# ES START
|
||||
- type: ESViewconeOccludable
|
||||
# ES END
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"version": 1,
|
||||
"license": "LicenseRef-Wallening",
|
||||
"license": "CC0-1.0",
|
||||
"copyright": "sowelipililimute (GitHub)",
|
||||
"size": {
|
||||
"x": 32,
|
||||
|
|
|
|||
Loading…
Reference in New Issue