From f19791f01bb5691a9b56ac491cc9c54f342164fb Mon Sep 17 00:00:00 2001 From: civilCornball <48499004+civilCornball@users.noreply.github.com> Date: Thu, 29 Sep 2022 16:44:56 -0400 Subject: [PATCH] Recycler Now Accepts All Trash (#11523) --- Content.Server/Recycling/RecyclerSystem.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Server/Recycling/RecyclerSystem.cs b/Content.Server/Recycling/RecyclerSystem.cs index 42bd20af69..ee515b557f 100644 --- a/Content.Server/Recycling/RecyclerSystem.cs +++ b/Content.Server/Recycling/RecyclerSystem.cs @@ -92,8 +92,8 @@ namespace Content.Server.Recycling { RecyclableComponent? recyclable = null; - // Can only recycle things that are recyclable... And also check the safety of the thing to recycle. - if (!_tags.HasTag(entity, "Recyclable") && + // Can only recycle things that are tagged trash or recyclable... And also check the safety of the thing to recycle. + if (!_tags.HasAnyTag(entity, "Trash", "Recyclable") && (!TryComp(entity, out recyclable) || !recyclable.Safe && component.Safe)) { return;