From 506e9e467437b065d6f3a2ffec9653289705f5f7 Mon Sep 17 00:00:00 2001 From: LordEclipse <106132477+LordEclipse@users.noreply.github.com> Date: Tue, 29 Aug 2023 12:28:03 -0400 Subject: [PATCH] Added ability to change bool with VVWrite for PortalComponent.cs "CanTeleportToOtherMaps" (#19637) --- Content.Shared/Teleportation/Components/PortalComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Teleportation/Components/PortalComponent.cs b/Content.Shared/Teleportation/Components/PortalComponent.cs index d14576cf20..eb81070a1e 100644 --- a/Content.Shared/Teleportation/Components/PortalComponent.cs +++ b/Content.Shared/Teleportation/Components/PortalComponent.cs @@ -35,7 +35,7 @@ public sealed partial class PortalComponent : Component /// /// Shouldn't be able to teleport people to centcomm or the eshuttle from the station /// - [DataField("canTeleportToOtherMaps")] + [DataField("canTeleportToOtherMaps"), ViewVariables(VVAccess.ReadWrite)] public bool CanTeleportToOtherMaps = false; ///