From d3ef09a3b4b04d162ebd6586c94526bb781a9045 Mon Sep 17 00:00:00 2001 From: Shadow-Quill <44811257+Shadow-Quill@users.noreply.github.com> Date: Thu, 26 Sep 2024 18:37:30 -0600 Subject: [PATCH] Relocation cell no longer requires bluespace extract (#2126) ## About The Pull Request Removes the bluespace extract requirement for the medigun relocation cell. ## Why It's Good For The Game Xenobio is rarely properly staffed, and bluespace slimes take a while to get anyways. This increases the bluespace crystal cost to three sheets, to somewhat compensate. ## Proof Of Testing No. ## Changelog :cl: balance: Oppressive Force Relocation Medicells no longer require bluespace extracts to become functional. /:cl: --- modular_skyrat/modules/cellguns/code/medigun_research.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modular_skyrat/modules/cellguns/code/medigun_research.dm b/modular_skyrat/modules/cellguns/code/medigun_research.dm index f7e6030cbbd..eab5ec509b6 100644 --- a/modular_skyrat/modules/cellguns/code/medigun_research.dm +++ b/modular_skyrat/modules/cellguns/code/medigun_research.dm @@ -239,6 +239,6 @@ /datum/material/glass = SHEET_MATERIAL_AMOUNT, /datum/material/plasma = HALF_SHEET_MATERIAL_AMOUNT, /datum/material/diamond = HALF_SHEET_MATERIAL_AMOUNT, - /datum/material/bluespace = SHEET_MATERIAL_AMOUNT, + /datum/material/bluespace = SHEET_MATERIAL_AMOUNT * 3, // Bubber Edit - Relocation cell no longer requires bluespace extract ) - build_path = /obj/item/device/custom_kit/empty_cell/relocator + build_path = /obj/item/weaponcell/medical/utility/relocation // Bubber Edit - Relocation cell no longer requires bluespace extract