Skip to content

Commit

Permalink
Renaming.
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian16199 committed Feb 5, 2024
1 parent 0493981 commit 29a7fab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ namespace Content.Shared.StepTrigger.Components;


[RegisterComponent, NetworkedComponent]
public sealed partial class SoftPawsComponent : Component
public sealed partial class NoShoesSilentFootstepsComponent : Component
{
}
2 changes: 1 addition & 1 deletion Content.Shared/Movement/Systems/SharedMoverController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ private bool TryGetSound(
}

// If soft paws and no shoes, no sound. Delta V
if (_entities.TryGetComponent(uid, out SoftPawsComponent? _) &
if (_entities.TryGetComponent(uid, out NoShoesSilentFootstepsComponent? _) &
!_inventory.TryGetSlotEntity(uid, "shoes", out var _))
{
return false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
Female: FemaleFelinid
Unsexed: MaleFelinid
- type: Felinid
- type: SoftPaws
- type: NoShoesSilentFootsteps

- type: entity
save: false
Expand Down

0 comments on commit 29a7fab

Please sign in to comment.