Skip to content

Commit

Permalink
Update SharedMaterialReclaimerSystem.cs (#503)
Browse files Browse the repository at this point in the history
Signed-off-by: Debug <[email protected]>
  • Loading branch information
DebugOk authored Dec 3, 2023
1 parent eb2eb7c commit e829b13
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Content.Shared/Materials/SharedMaterialReclaimerSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -205,10 +205,11 @@ public bool CanStart(EntityUid uid, MaterialReclaimerComponent component)
/// </summary>
public bool CanGib(EntityUid uid, EntityUid victim, MaterialReclaimerComponent component)
{
return component.Powered &&
component.Enabled &&
HasComp<BodyComponent>(victim) &&
HasComp<EmaggedComponent>(uid);
return false; // DeltaV - Kinda LRP
// return component.Powered &&
// component.Enabled &&
// HasComp<BodyComponent>(victim) &&
// HasComp<EmaggedComponent>(uid);
}

/// <summary>
Expand Down

0 comments on commit e829b13

Please sign in to comment.