From 81ee7a10071ffdd8f27dab7e554c9ff444b8fa9a Mon Sep 17 00:00:00 2001 From: Novacat <35587478+Novacat@users.noreply.github.com> Date: Sun, 2 May 2021 12:39:20 -0400 Subject: [PATCH] Merge pull request #10242 from Heroman3003/cost-reduce-ar Reduces cost of Sci and Eng AR programs. --- code/modules/nifsoft/software/01_vision.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/nifsoft/software/01_vision.dm b/code/modules/nifsoft/software/01_vision.dm index 7a792009f4..c68a6feb0c 100644 --- a/code/modules/nifsoft/software/01_vision.dm +++ b/code/modules/nifsoft/software/01_vision.dm @@ -34,9 +34,9 @@ /datum/nifsoft/ar_eng name = "AR Overlay (Eng)" - desc = "Like the civilian model, but provides station alert notices." + desc = "Like the civilian model, but provides ... well, nothing. For now." list_pos = NIF_ENGINE_AR - cost = 375 + cost = 250 access = access_engine a_drain = 0.01 planes_enabled = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_AUGMENTED) @@ -47,7 +47,7 @@ name = "AR Overlay (Sci)" desc = "Like the civilian model, but provides ... well, nothing. For now." list_pos = NIF_SCIENCE_AR - cost = 375 + cost = 250 access = access_research a_drain = 0.01 planes_enabled = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_AUGMENTED)