From 666c5c0b02bc5782d209b4e74dd12f438c650c7e Mon Sep 17 00:00:00 2001 From: Bloop Date: Sat, 29 Apr 2023 00:26:59 -0400 Subject: [PATCH] Anomaly refinery no longer lets you insert cores of insufficient quality (#75008) ## About The Pull Request Pretty self explanatory. Someone just forgot a return statement after the error message here. Closes https://github.com/Skyrat-SS13/Skyrat-tg/issues/20803 ## Why It's Good For The Game Bugfix/oversight ## Changelog :cl: fix: the anomaly refinery will no longer let you insert cores of insufficient quality to refine /:cl: --- code/modules/research/anomaly/anomaly_refinery.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/research/anomaly/anomaly_refinery.dm b/code/modules/research/anomaly/anomaly_refinery.dm index d914cc89b94..ce09ebb9176 100644 --- a/code/modules/research/anomaly/anomaly_refinery.dm +++ b/code/modules/research/anomaly/anomaly_refinery.dm @@ -85,6 +85,7 @@ var/obj/item/raw_anomaly_core/raw_core = tool if(!get_required_radius(raw_core.anomaly_type)) say("Unfortunately, due to diminishing supplies of condensed anomalous matter, [raw_core] and any cores of its type are no longer of a sufficient quality level to be compressed into a working core.") + return inserted_core = raw_core to_chat(user, span_notice("You insert [raw_core] into [src].")) return