Fix build issues related to upstream pull

This commit is contained in:
nevimer
2025-09-03 20:27:07 -04:00
parent 99be7d565e
commit db5aa35b59
19 changed files with 46 additions and 162 deletions
@@ -4,22 +4,22 @@
/obj/item/modular_computer/get_security_level_relevancy()
switch(SSsecurity_level.get_current_level_as_number())
if(SEC_LEVEL_VIOLET)
if(ACCESS_MEDICAL in computer_id_slot?.access)
if(ACCESS_MEDICAL in stored_id?.access)
return ALERT_RELEVANCY_PERTINENT
else
return ALERT_RELEVANCY_WARN
if(SEC_LEVEL_ORANGE)
if(ACCESS_ENGINEERING in computer_id_slot?.access)
if(ACCESS_ENGINEERING in stored_id?.access)
return ALERT_RELEVANCY_PERTINENT
else
return ALERT_RELEVANCY_SAFE
if(SEC_LEVEL_AMBER)
if(ACCESS_SECURITY in computer_id_slot?.access)
if(ACCESS_SECURITY in stored_id?.access)
return ALERT_RELEVANCY_PERTINENT
else
return ALERT_RELEVANCY_WARN
if(SEC_LEVEL_BLUE) // do this even though the base function already covers blue -- this is cause we operate differently from blue (blue = sec prep on bubber, = sec active on tg)
if(ACCESS_SECURITY in computer_id_slot?.access)
if(ACCESS_SECURITY in stored_id?.access)
return ALERT_RELEVANCY_PERTINENT
else
return ALERT_RELEVANCY_SAFE