Skip to content

Commit

Permalink
Plunger flights fix (#2358)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirus59 authored Dec 15, 2024
1 parent 95dd00c commit 5b9c06d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Server/Lube/LubedSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ private void OnHandPickUp(EntityUid uid, LubedComponent component, ContainerGett
var user = args.Container.Owner;
_transform.SetCoordinates(uid, Transform(user).Coordinates);
_transform.AttachToGridOrMap(uid);
_throwing.TryThrow(uid, _random.NextVector2(), baseThrowSpeed: component.SlipStrength);
_throwing.TryThrow(uid, _random.NextVector2(), baseThrowSpeed: component.SlipStrength, user); // SS220 plunger flights fix
_popup.PopupEntity(Loc.GetString("lube-slip", ("target", Identity.Entity(uid, EntityManager))), user, user, PopupType.MediumCaution);
}

Expand Down

0 comments on commit 5b9c06d

Please sign in to comment.