From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Tue, 6 Aug 2024 10:51:59 +0000 (+0300) Subject: Add comment into jetpack system, to prevent future grid jetpack PRs (#30682) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=fb994e8d2119d78747fe58867ee6d8e08df94db3;p=space-station-14.git Add comment into jetpack system, to prevent future grid jetpack PRs (#30682) Update SharedJetpackSystem.cs --- diff --git a/Content.Shared/Movement/Systems/SharedJetpackSystem.cs b/Content.Shared/Movement/Systems/SharedJetpackSystem.cs index 276aa62032..548594c01f 100644 --- a/Content.Shared/Movement/Systems/SharedJetpackSystem.cs +++ b/Content.Shared/Movement/Systems/SharedJetpackSystem.cs @@ -125,6 +125,8 @@ public abstract class SharedJetpackSystem : EntitySystem private bool CanEnableOnGrid(EntityUid? gridUid) { + // No and no again! Do not attempt to activate the jetpack on a grid with gravity disabled. You will not be the first or the last to try this. + // https://discord.com/channels/310555209753690112/310555209753690112/1270067921682694234 return gridUid == null || (!HasComp(gridUid)); }