From cfbf620e3fba0559c1a5d725da35bb37cf3b50f0 Mon Sep 17 00:00:00 2001 From: ScarKy0 <106310278+ScarKy0@users.noreply.github.com> Date: Sun, 13 Apr 2025 17:21:55 +0200 Subject: [PATCH 01/13] Condensed gases can now be metabolized. (#31648) * Condensed gasses can now be metabolized. * Made condensed frezon weaker * Liquid frezon nerf --- Resources/Prototypes/Reagents/gases.yml | 111 ++++++++++++++++++++++++ 1 file changed, 111 insertions(+) diff --git a/Resources/Prototypes/Reagents/gases.yml b/Resources/Prototypes/Reagents/gases.yml index 9ef508feea..ac39f2d725 100644 --- a/Resources/Prototypes/Reagents/gases.yml +++ b/Resources/Prototypes/Reagents/gases.yml @@ -8,6 +8,52 @@ boilingPoint: -183.0 meltingPoint: -218.4 metabolisms: + Poison: + effects: + - !type:Oxygenate + conditions: + - !type:OrganType + type: Human + - !type:Oxygenate + conditions: + - !type:OrganType + type: Animal + - !type:Oxygenate + conditions: + - !type:OrganType + type: Rat + - !type:Oxygenate + conditions: + - !type:OrganType + type: Plant + # Convert Oxygen into CO2. + - !type:ModifyLungGas + conditions: + - !type:OrganType + type: Vox + shouldHave: false + ratios: + CarbonDioxide: 1.0 + Oxygen: -1.0 + - !type:HealthChange + conditions: + - !type:OrganType + type: Vox + scaleByQuantity: true + ignoreResistances: true + damage: + types: + Poison: + 3 + - !type:AdjustAlert + alertType: Toxins + conditions: + - !type:ReagentThreshold + min: 0.5 + - !type:OrganType + type: Vox + clear: true + time: 5 Gas: effects: - !type:Oxygenate @@ -150,6 +196,32 @@ flavor: bitter color: "#66ff33" metabolisms: + Poison: + effects: + - !type:Oxygenate + conditions: + - !type:OrganType + type: Plant + - !type:HealthChange + conditions: + - !type:OrganType + type: Plant + shouldHave: false + - !type:OrganType + type: Vox + shouldHave: false + scaleByQuantity: true + ignoreResistances: true + damage: + types: + Poison: + 0.8 + - !type:Oxygenate + conditions: + - !type:OrganType + type: Plant + shouldHave: false + factor: -4 Gas: effects: - !type:Oxygenate @@ -236,6 +308,12 @@ boilingPoint: -88 meltingPoint: -90 metabolisms: + Poison: + effects: + - !type:HealthChange + damage: + types: + Poison: 2 Gas: effects: - !type:Emote @@ -317,6 +395,39 @@ boilingPoint: -195.8 meltingPoint: -210.0 metabolisms: + Narcotic: + effects: + - !type:HealthChange + scaleByQuantity: true + ignoreResistances: true + damage: + types: + Cellular: 1 + - !type:GenericStatusEffect + key: SeeingRainbows + component: SeeingRainbows + type: Add + time: 100 + refresh: false + - !type:Drunk + boozePower: 100 + - !type:PopupMessage + type: Local + messages: [ "frezon-lungs-cold" ] + probability: 0.1 + conditions: + - !type:ReagentThreshold + reagent: Frezon + min: 0.5 + - !type:PopupMessage + type: Local + visualType: Medium + messages: [ "frezon-euphoric" ] + probability: 0.1 + conditions: + - !type:ReagentThreshold + reagent: Frezon + min: 1 Gas: effects: - !type:HealthChange From 7d1ab10da431bb182b50e38f78dcf8ead1af3e9b Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 13 Apr 2025 15:23:01 +0000 Subject: [PATCH 02/13] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 8f2d122d81..5267d1ede8 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: VlaDOS1408 - changes: - - message: Locale to shuttle-ftl-status-Invalid - type: Add - id: 7663 - time: '2024-11-30T02:54:37.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33651 - author: jbox144 changes: - message: Fixed the link on Marathon's TEG exterior airlock @@ -3898,3 +3891,11 @@ id: 8162 time: '2025-04-13T14:24:11.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/36503 +- author: ScarKy0 + changes: + - message: Oxygen, Carbon Dioxide, Nitrous Oxide and Frezon can now metabolize when + digested/injected. + type: Tweak + id: 8163 + time: '2025-04-13T15:21:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31648 From d2bfa2fddaad0b9d1f376ba00e7cceee12fdd1ce Mon Sep 17 00:00:00 2001 From: ArchRBX <5040911+ArchRBX@users.noreply.github.com> Date: Sun, 13 Apr 2025 16:29:13 +0100 Subject: [PATCH 03/13] Examining now shows Coords on Handheld GPS, Coord readout update frequency increased (#31814) * initial commit * fixed LoadSaveTicksSaveBagel failure * fixes issues raised in beck's review, yay! * remove redundant variable * removed delay on coordinate update, removed system update loop * changed delay from 0.2s to 0.5s as travelling at high speeds would make it kinda illegible * 0.35s seems to be the sweet-spot * fixes merge conflicts * remove unused dependencies * review --------- Co-authored-by: archrbx Co-authored-by: Milon --- .../GPS/Systems/HandheldGpsSystem.cs | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 Content.Shared/GPS/Systems/HandheldGpsSystem.cs diff --git a/Content.Shared/GPS/Systems/HandheldGpsSystem.cs b/Content.Shared/GPS/Systems/HandheldGpsSystem.cs new file mode 100644 index 0000000000..6a8e4c08db --- /dev/null +++ b/Content.Shared/GPS/Systems/HandheldGpsSystem.cs @@ -0,0 +1,37 @@ +using Content.Shared.GPS.Components; +using Content.Shared.Examine; +using Robust.Shared.Map; + +namespace Content.Shared.GPS.Systems; + +public sealed class HandheldGpsSystem : EntitySystem +{ + [Dependency] private readonly SharedTransformSystem _transform = default!; + + /// + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnExamine); + } + + /// + /// Handles showing the coordinates when a GPS is examined. + /// + private void OnExamine(Entity ent, ref ExaminedEvent args) + { + var posText = "Error"; + + var pos = _transform.GetMapCoordinates(ent); + + if (pos.MapId != MapId.Nullspace) + { + var x = (int) pos.Position.X; + var y = (int) pos.Position.Y; + posText = $"({x}, {y})"; + } + + args.PushMarkup(Loc.GetString("handheld-gps-coordinates-title", ("coordinates", posText))); + } +} From 022a383a58e0c670267c8c7cd75abc42a341b1b5 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 13 Apr 2025 15:30:19 +0000 Subject: [PATCH 04/13] Automatic changelog update --- Resources/Changelog/Changelog.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 5267d1ede8..bbe4d89121 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,13 +1,4 @@ Entries: -- author: jbox144 - changes: - - message: Fixed the link on Marathon's TEG exterior airlock - type: Fix - - message: Fixed Cog's exterior atmospherics airlock - type: Fix - id: 7664 - time: '2024-11-30T06:23:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33621 - author: Plykiya changes: - message: You can no longer cuff someone multiple times if multiple cuff do-afters @@ -3899,3 +3890,12 @@ id: 8163 time: '2025-04-13T15:21:55.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31648 +- author: ArchRBX + changes: + - message: Handheld GPS's can now be examined to read their displays + type: Add + - message: Handheld GPS's now update their displays much more frequently + type: Tweak + id: 8164 + time: '2025-04-13T15:29:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/31814 From 05f9e6d28e06cc0974071d772a3a39fd3a9271ad Mon Sep 17 00:00:00 2001 From: beck-thompson <107373427+beck-thompson@users.noreply.github.com> Date: Sun, 13 Apr 2025 08:51:35 -0700 Subject: [PATCH 05/13] ID card computer bug fixed (And made it more fun!) (#32308) * First commit * More feature yay * comments * good * silly me * review --------- Co-authored-by: Milon --- .../Access/Systems/IdCardConsoleSystem.cs | 65 +++++++++++++++++-- .../components/id-card-console-component.ftl | 1 + .../Machines/Computers/computers.yml | 3 + .../Construction/Graphs/machines/computer.yml | 3 + 4 files changed, 68 insertions(+), 4 deletions(-) diff --git a/Content.Server/Access/Systems/IdCardConsoleSystem.cs b/Content.Server/Access/Systems/IdCardConsoleSystem.cs index a9e5d9a6d3..2d6e8a1238 100644 --- a/Content.Server/Access/Systems/IdCardConsoleSystem.cs +++ b/Content.Server/Access/Systems/IdCardConsoleSystem.cs @@ -1,18 +1,24 @@ +using System.Linq; +using Content.Server.Chat.Systems; +using Content.Server.Containers; using Content.Server.StationRecords.Systems; using Content.Shared.Access.Components; +using static Content.Shared.Access.Components.IdCardConsoleComponent; using Content.Shared.Access.Systems; +using Content.Shared.Access; using Content.Shared.Administration.Logs; +using Content.Shared.Construction; +using Content.Shared.Containers.ItemSlots; +using Content.Shared.Damage; using Content.Shared.Database; using Content.Shared.Roles; using Content.Shared.StationRecords; -using Content.Shared.StatusIcon; +using Content.Shared.Throwing; using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Shared.Containers; using Robust.Shared.Prototypes; -using System.Linq; -using static Content.Shared.Access.Components.IdCardConsoleComponent; -using Content.Shared.Access; +using Robust.Shared.Random; namespace Content.Server.Access.Systems; @@ -26,6 +32,10 @@ public sealed class IdCardConsoleSystem : SharedIdCardConsoleSystem [Dependency] private readonly AccessSystem _access = default!; [Dependency] private readonly IdCardSystem _idCard = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly ThrowingSystem _throwing = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly ChatSystem _chat = default!; public override void Initialize() { @@ -37,6 +47,11 @@ public sealed class IdCardConsoleSystem : SharedIdCardConsoleSystem SubscribeLocalEvent(UpdateUserInterface); SubscribeLocalEvent(UpdateUserInterface); SubscribeLocalEvent(UpdateUserInterface); + SubscribeLocalEvent(OnDamageChanged); + + // Intercept the event before anyone can do anything with it! + SubscribeLocalEvent(OnMachineDeconstructed, + before: [typeof(EmptyOnMachineDeconstructSystem), typeof(ItemSlotsSystem)]); } private void OnWriteToTargetIdMessage(EntityUid uid, IdCardConsoleComponent component, WriteToTargetIdMessage args) @@ -210,4 +225,46 @@ public sealed class IdCardConsoleSystem : SharedIdCardConsoleSystem _record.Synchronize(key); } + + private void OnMachineDeconstructed(Entity entity, ref MachineDeconstructedEvent args) + { + TryDropAndThrowIds(entity.AsNullable()); + } + + private void OnDamageChanged(Entity entity, ref DamageChangedEvent args) + { + if (TryDropAndThrowIds(entity.AsNullable())) + _chat.TrySendInGameICMessage(entity, Loc.GetString("id-card-console-damaged"), InGameICChatType.Speak, true); + } + + #region PublicAPI + + /// + /// Tries to drop any IDs stored in the console, and then tries to throw them away. + /// Returns true if anything was ejected and false otherwise. + /// + public bool TryDropAndThrowIds(Entity ent) + { + if (!Resolve(ent, ref ent.Comp1, ref ent.Comp2)) + return false; + + var didEject = false; + + foreach (var slot in ent.Comp2.Slots.Values) + { + if (slot.Item == null || slot.ContainerSlot == null) + continue; + + var item = slot.Item.Value; + if (_container.Remove(item, slot.ContainerSlot)) + { + _throwing.TryThrow(item, _random.NextVector2(), baseThrowSpeed: 5f); + didEject = true; + } + } + + return didEject; + } + + #endregion } diff --git a/Resources/Locale/en-US/access/components/id-card-console-component.ftl b/Resources/Locale/en-US/access/components/id-card-console-component.ftl index be5d3f0bc3..7793b34846 100644 --- a/Resources/Locale/en-US/access/components/id-card-console-component.ftl +++ b/Resources/Locale/en-US/access/components/id-card-console-component.ftl @@ -10,3 +10,4 @@ id-card-console-window-job-selection-label = Job presets (sets department and jo access-id-card-console-component-no-hands-error = You have no hands. id-card-console-privileged-id = Privileged ID id-card-console-target-id = Target ID +id-card-console-damaged = Structural integrity compromised, ejecting contents. diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index 4ee4c0de0a..0f502e83f0 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -597,6 +597,9 @@ type: WiresBoundUserInterface - type: CrewManifestViewer ownerKey: enum.IdCardConsoleUiKey.Key + - type: Speech + speechVerb: Robotic + speechSounds: Pai - type: Sprite layers: - map: ["computerLayerBody"] diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/machines/computer.yml b/Resources/Prototypes/Recipes/Construction/Graphs/machines/computer.yml index b3c9cac926..4530cef1b2 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/machines/computer.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/machines/computer.yml @@ -123,6 +123,9 @@ entity: !type:BoardNodeEntity { container: board } edges: - to: monitorUnsecured + completed: + - !type:RaiseEvent + event: !type:MachineDeconstructedEvent steps: - tool: Prying doAfter: 1 From 7da4804ffb290838b6682ff172053e315abd0636 Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 13 Apr 2025 15:52:42 +0000 Subject: [PATCH 06/13] Automatic changelog update --- Resources/Changelog/Changelog.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index bbe4d89121..91ed730881 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: You can no longer cuff someone multiple times if multiple cuff do-afters - are completed at the exact same time. - type: Fix - id: 7665 - time: '2024-11-30T15:58:56.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33646 - author: Plykiya changes: - message: You can now inspect the entity in your hand instead of the entity that @@ -3899,3 +3891,12 @@ id: 8164 time: '2025-04-13T15:29:13.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/31814 +- author: Beck Thompson, Kaz Wooblie + changes: + - message: Computers now wont delete items inside of them when deconstructing. + type: Fix + - message: The ID card computer now throws the IDs out when deconstructed or damaged! + type: Add + id: 8165 + time: '2025-04-13T15:51:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32308 From b619d4fae1b60a7e62af8c877655dd8733e87722 Mon Sep 17 00:00:00 2001 From: deltanedas <39013340+deltanedas@users.noreply.github.com> Date: Sun, 13 Apr 2025 17:03:13 +0100 Subject: [PATCH 07/13] add some error logging to exped generation (#32867) Co-authored-by: deltanedas <@deltanedas:kde.org> --- .../Salvage/SpawnSalvageMissionJob.cs | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/Content.Server/Salvage/SpawnSalvageMissionJob.cs b/Content.Server/Salvage/SpawnSalvageMissionJob.cs index 21da7e89a0..6746c2f8bd 100644 --- a/Content.Server/Salvage/SpawnSalvageMissionJob.cs +++ b/Content.Server/Salvage/SpawnSalvageMissionJob.cs @@ -214,7 +214,14 @@ public sealed class SpawnSalvageMissionJob : Job if (!lootProto.Guaranteed) continue; - await SpawnDungeonLoot(lootProto, mapUid); + try + { + await SpawnDungeonLoot(lootProto, mapUid); + } + catch (Exception e) + { + _sawmill.Error($"Failed to spawn guaranteed loot {lootProto.ID}: {e}"); + } } // Handle boss loot (when relevant). @@ -244,7 +251,14 @@ public sealed class SpawnSalvageMissionJob : Job if (entry == null) break; - await SpawnRandomEntry(grid, entry, dungeon, random); + try + { + await SpawnRandomEntry(grid, entry, dungeon, random); + } + catch (Exception e) + { + _sawmill.Error($"Failed to spawn mobs for {entry.Proto}: {e}"); + } } var allLoot = _prototypeManager.Index(SharedSalvageSystem.ExpeditionsLootProto); From 6af4a4d9b8494228dbcc9e5e6037fb7dbe6f9649 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Mon, 14 Apr 2025 02:09:56 +1000 Subject: [PATCH 08/13] Fix user interface interaction validation (#36480) --- .../Interaction/SharedInteractionSystem.cs | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index 9a2706d8a0..00246bafcd 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -106,7 +106,9 @@ namespace Content.Shared.Interaction _uiQuery = GetEntityQuery(); SubscribeLocalEvent(HandleUserInterfaceRangeCheck); - SubscribeLocalEvent(OnBoundInterfaceInteractAttempt); + + // TODO make this a broadcast event subscription again when engine has updated. + SubscribeLocalEvent(OnBoundInterfaceInteractAttempt); SubscribeAllEvent(HandleInteractInventorySlotEvent); @@ -151,12 +153,15 @@ namespace Content.Shared.Interaction /// /// Check that the user that is interacting with the BUI is capable of interacting and can access the entity. /// - private void OnBoundInterfaceInteractAttempt(Entity ent, ref BoundUserInterfaceMessageAttempt ev) + private void OnBoundInterfaceInteractAttempt(Entity ent, ref BoundUserInterfaceMessageAttempt ev) { + _uiQuery.TryComp(ev.Target, out var aUiComp); if (!_actionBlockerSystem.CanInteract(ev.Actor, ev.Target)) { // We permit ghosts to open uis unless explicitly blocked - if (ev.Message is not OpenBoundInterfaceMessage || !HasComp(ev.Actor) || ent.Comp.BlockSpectators) + if (ev.Message is not OpenBoundInterfaceMessage + || !HasComp(ev.Actor) + || aUiComp?.BlockSpectators == true) { ev.Cancel(); return; @@ -174,14 +179,16 @@ namespace Content.Shared.Interaction return; } + if (aUiComp == null) + return; - if (ent.Comp.SingleUser && ent.Comp.CurrentSingleUser != null && ent.Comp.CurrentSingleUser != ev.Actor) + if (aUiComp.SingleUser && aUiComp.CurrentSingleUser != null && aUiComp.CurrentSingleUser != ev.Actor) { ev.Cancel(); return; } - if (ent.Comp.RequiresComplex && !_actionBlockerSystem.CanComplexInteract(ev.Actor)) + if (aUiComp.RequiresComplex && !_actionBlockerSystem.CanComplexInteract(ev.Actor)) ev.Cancel(); } From 66f131661671029c603ba0e1807897ae92699d4a Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 13 Apr 2025 16:11:02 +0000 Subject: [PATCH 09/13] Automatic changelog update --- Resources/Changelog/Changelog.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 91ed730881..9c7c0546f9 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: You can now inspect the entity in your hand instead of the entity that - happened to be underneath your hand. - type: Fix - id: 7666 - time: '2024-11-30T16:14:39.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33642 - author: Plykiya changes: - message: You can now inspect entities in the stripping window instead of the entity @@ -3900,3 +3892,11 @@ id: 8165 time: '2025-04-13T15:51:35.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/32308 +- author: ElectroJr + changes: + - message: Fixed a bug that allowed dead or incapacitated people to potentially + interact with some UIs. + type: Fix + id: 8166 + time: '2025-04-13T16:09:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36480 From 232ade99a9f6256af0e7d1fee58d513033c6eb81 Mon Sep 17 00:00:00 2001 From: K-Dynamic <20566341+K-Dynamic@users.noreply.github.com> Date: Mon, 14 Apr 2025 05:23:35 +1200 Subject: [PATCH 10/13] Remove flash payload from stinger grenades (#36394) Remove flash payload from stinger --- .../Entities/Objects/Weapons/Throwable/projectile_grenades.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/projectile_grenades.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/projectile_grenades.yml index 9f71158357..6a111ef1c8 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/projectile_grenades.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/projectile_grenades.yml @@ -40,8 +40,6 @@ - type: ProjectileGrenade fillPrototype: PelletClusterRubber capacity: 30 - - type: FlashOnTrigger - range: 7 - type: EmitSoundOnTrigger sound: path: "/Audio/Effects/flash_bang.ogg" From 3a6085a10a8bd362ec5f81c7081706299505152e Mon Sep 17 00:00:00 2001 From: PJBot Date: Sun, 13 Apr 2025 17:24:41 +0000 Subject: [PATCH 11/13] Automatic changelog update --- Resources/Changelog/Changelog.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 9c7c0546f9..006c06a22f 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,12 +1,4 @@ Entries: -- author: Plykiya - changes: - - message: You can now inspect entities in the stripping window instead of the entity - that happened to be underneath the window. - type: Fix - id: 7667 - time: '2024-11-30T16:23:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33644 - author: Winkarst-cpu changes: - message: Now borgs get names on roundstart. @@ -3900,3 +3892,10 @@ id: 8166 time: '2025-04-13T16:09:56.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/36480 +- author: K-Dynamic + changes: + - message: Stinger grenades no longer flash on detonation. + type: Tweak + id: 8167 + time: '2025-04-13T17:23:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36394 From 8e911d96f9facc116a33137564b914dff7ed2168 Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Sun, 13 Apr 2025 20:15:21 +0200 Subject: [PATCH 12/13] antag role placeholder loc text (#36514) --- .../character-info/components/character-info-component.ftl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Locale/en-US/character-info/components/character-info-component.ftl b/Resources/Locale/en-US/character-info/components/character-info-component.ftl index b515c36c5a..dd2f848f77 100644 --- a/Resources/Locale/en-US/character-info/components/character-info-component.ftl +++ b/Resources/Locale/en-US/character-info/components/character-info-component.ftl @@ -1,4 +1,4 @@ character-info-title = Character -character-info-roles-antagonist-text = Antagonist Roles +character-info-roles-antagonist-text = You have no special Roles character-info-objectives-label = Objectives character-info-no-profession = No Profession From 1741f40f8a246006db966076c2f1bb9f53588bcb Mon Sep 17 00:00:00 2001 From: Myra Date: Sun, 13 Apr 2025 22:04:52 +0200 Subject: [PATCH 13/13] Disable mob pushing Part of maint meeting --- Resources/ConfigPresets/WizardsDen/wizardsDen.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml index b29ee87d5c..69fd17bddc 100644 --- a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml +++ b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml @@ -32,7 +32,7 @@ appeal = "https://appeal.ss14.io" rules_file = "StandardRuleset" [movement] -mob_pushing = true +mob_pushing = false [net] max_connections = 1024