From e829b13651614b25f02823cac3f9c5def6ec6750 Mon Sep 17 00:00:00 2001 From: Debug <49997488+DebugOk@users.noreply.github.com> Date: Sun, 3 Dec 2023 01:58:58 +0100 Subject: [PATCH] Update SharedMaterialReclaimerSystem.cs (#503) Signed-off-by: Debug <49997488+DebugOk@users.noreply.github.com> --- .../Materials/SharedMaterialReclaimerSystem.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs b/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs index 31df11fa8b4..46d20c78d35 100644 --- a/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs +++ b/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs @@ -205,10 +205,11 @@ public bool CanStart(EntityUid uid, MaterialReclaimerComponent component) /// public bool CanGib(EntityUid uid, EntityUid victim, MaterialReclaimerComponent component) { - return component.Powered && - component.Enabled && - HasComp(victim) && - HasComp(uid); + return false; // DeltaV - Kinda LRP + // return component.Powered && + // component.Enabled && + // HasComp(victim) && + // HasComp(uid); } ///