diff --git a/Barotrauma/BarotraumaShared/Source/Items/Components/Holdable/Pickable.cs b/Barotrauma/BarotraumaShared/Source/Items/Components/Holdable/Pickable.cs index 72319fea4..e9daebd1d 100644 --- a/Barotrauma/BarotraumaShared/Source/Items/Components/Holdable/Pickable.cs +++ b/Barotrauma/BarotraumaShared/Source/Items/Components/Holdable/Pickable.cs @@ -146,7 +146,7 @@ namespace Barotrauma.Items.Components StopPicking(picker); - if (!picker.IsRemotePlayer) OnPicked(picker); + if (!picker.IsRemotePlayer || GameMain.Server != null) OnPicked(picker); yield return CoroutineStatus.Success; }