From c2012fb4283807364f743aa17f71299b3bb4beb9 Mon Sep 17 00:00:00 2001 From: Unkn0wn_Gh0st Date: Thu, 19 Sep 2024 22:36:22 -0500 Subject: [PATCH 1/3] Corpsman-Lethal-Mag (#1869) * Corpsman-Lethal-Mag * Corpsman-Lethal-Mag --- Resources/Prototypes/DeltaV/Roles/Jobs/Security/brigmedic.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/DeltaV/Roles/Jobs/Security/brigmedic.yml b/Resources/Prototypes/DeltaV/Roles/Jobs/Security/brigmedic.yml index 2582dd5c2c6..ade0e69ba77 100644 --- a/Resources/Prototypes/DeltaV/Roles/Jobs/Security/brigmedic.yml +++ b/Resources/Prototypes/DeltaV/Roles/Jobs/Security/brigmedic.yml @@ -44,3 +44,4 @@ - BruteAutoInjector - BurnAutoInjector - BurnAutoInjector + - MagazinePistol From 3a0174439c6e85e7b7d4bb5742117996db3d0ba9 Mon Sep 17 00:00:00 2001 From: Milon Date: Fri, 20 Sep 2024 05:38:10 +0200 Subject: [PATCH 2/3] fix felinids footsteps (#1866) * I am SO fucking smart * fixed random shit from my doing of random shit --- .../Movement/Systems/SharedMoverController.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Content.Shared/Movement/Systems/SharedMoverController.cs b/Content.Shared/Movement/Systems/SharedMoverController.cs index 472d56b1d69..b4d28acece6 100644 --- a/Content.Shared/Movement/Systems/SharedMoverController.cs +++ b/Content.Shared/Movement/Systems/SharedMoverController.cs @@ -9,6 +9,7 @@ using Content.Shared.Mobs.Systems; using Content.Shared.Movement.Components; using Content.Shared.Movement.Events; +using Content.Shared.StepTrigger.Components; // DeltaV - NoShoesSilentFootstepsComponent using Content.Shared.Tag; using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; @@ -59,6 +60,7 @@ public abstract partial class SharedMoverController : VirtualController protected EntityQuery NoRotateQuery; protected EntityQuery FootstepModifierQuery; protected EntityQuery MapGridQuery; + protected EntityQuery NoShoesSilentQuery; // DeltaV - NoShoesSilentFootstepsComponent /// /// @@ -88,6 +90,7 @@ public override void Initialize() CanMoveInAirQuery = GetEntityQuery(); FootstepModifierQuery = GetEntityQuery(); MapGridQuery = GetEntityQuery(); + NoShoesSilentQuery = GetEntityQuery(); // DeltaV - NoShoesSilentFootstepsComponent InitializeInput(); InitializeRelay(); @@ -429,6 +432,14 @@ private bool TryGetSound( return false; } + // DeltaV - Don't play the sound if they have no shoes and the component + if (NoShoesSilentQuery.HasComp(uid) & + !_inventory.TryGetSlotEntity(uid, "shoes", out var _)) + { + return false; + } + // End DeltaV code + mobMover.LastPosition = coordinates; if (mobMover.StepSoundDistance < distanceNeeded) From 4923bfc4000b10652a8d42375cec04fd07b00690 Mon Sep 17 00:00:00 2001 From: Delta-V bot <135767721+DeltaV-Bot@users.noreply.github.com> Date: Fri, 20 Sep 2024 05:38:28 +0200 Subject: [PATCH 3/3] Automatic changelog update --- Resources/Changelog/DeltaVChangelog.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Resources/Changelog/DeltaVChangelog.yml b/Resources/Changelog/DeltaVChangelog.yml index e7e3ff9bc38..3dd886a443a 100644 --- a/Resources/Changelog/DeltaVChangelog.yml +++ b/Resources/Changelog/DeltaVChangelog.yml @@ -1,10 +1,4 @@ Entries: -- author: VMSolidus - changes: - - message: 'Harpies have been added to the game as a new playable species! ' - type: Add - id: 63 - time: '2023-10-13T18:25:13.0000000+00:00' - author: Vordenburg changes: - message: Enhanced intrusion defenses have been deployed in electrical systems. @@ -3605,3 +3599,10 @@ id: 562 time: '2024-09-19T08:39:15.0000000+00:00' url: https://github.com/DeltaV-Station/Delta-v/pull/1864 +- author: MilonPL + changes: + - message: Fixed barefoot felinids making footsteps sounds. + type: Fix + id: 563 + time: '2024-09-20T03:38:10.0000000+00:00' + url: https://github.com/DeltaV-Station/Delta-v/pull/1866