// SPDX-FileCopyrightText: 2024 Ilya246 <57039557+Ilya246@users.noreply.github.com> // SPDX-FileCopyrightText: 2024 Piras314 // SPDX-FileCopyrightText: 2024 whateverusername0 // SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> // SPDX-FileCopyrightText: 2025 Misandry // SPDX-FileCopyrightText: 2025 gus // // SPDX-License-Identifier: AGPL-3.0-or-later namespace Content.Server._Shitcode.Teleportation.Components; /// /// Entity that will randomly teleport the user when used in hand. /// [RegisterComponent] public sealed partial class RandomTeleportOnUseComponent : RandomTeleportComponent { /// /// Whether to consume this item on use; consumes only one if it's a stack /// [DataField] public bool ConsumeOnUse = true; }