diff --git a/Content.Shared/Movement/Systems/SharedJetpackSystem.cs b/Content.Shared/Movement/Systems/SharedJetpackSystem.cs index 548594c01f7..70d392ca4ae 100644 --- a/Content.Shared/Movement/Systems/SharedJetpackSystem.cs +++ b/Content.Shared/Movement/Systems/SharedJetpackSystem.cs @@ -127,8 +127,10 @@ 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 + // Sunrise-edit: Иди нахуй, лазик, это весело :clueless: return gridUid == null || - (!HasComp(gridUid)); + TryComp(gridUid, out var gravity) && // Sunrise-edit + !gravity.Enabled; // Sunrise-edit } private void OnJetpackGetAction(EntityUid uid, JetpackComponent component, GetItemActionsEvent args)