From bb7ce6f8581bec491c027c9bd22a186671e35d97 Mon Sep 17 00:00:00 2001 From: iloveloopers Date: Fri, 5 Jul 2024 02:07:52 -0400 Subject: [PATCH] hugbox --- code/game/machinery/computer/research.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/machinery/computer/research.dm b/code/game/machinery/computer/research.dm index b51da245844e..dd95d9afb2fc 100644 --- a/code/game/machinery/computer/research.dm +++ b/code/game/machinery/computer/research.dm @@ -160,6 +160,9 @@ if("broker_clearance") if(!photocopier) return + if(!SSobjectives.first_drop_complete) + visible_message(SPAN_NOTICE("Clearance access increase denied, first deployment necessary for purchase.")) + return if(GLOB.chemical_data.clearance_level < 5) var/cost = max(RESEARCH_LEVEL_INCREASE_MULTIPLIER*(GLOB.chemical_data.clearance_level + 1), 1) if(cost <= GLOB.chemical_data.rsc_credits)