From d90f0bbf92a55eeb131b4be153c9e308a8e65848 Mon Sep 17 00:00:00 2001 From: Verkister Date: Sun, 2 Dec 2018 12:36:22 +0200 Subject: [PATCH] Fixes digestive analyzer missing sync button I have no idea how that happened. --- .../mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm b/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm index 32e31c9a9a..73ba23aebd 100644 --- a/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm +++ b/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm @@ -224,7 +224,7 @@ dat += "Cargo compartment slot: Fuel.
" dat += "([list2text(contents - (deliveryslot_1 + deliveryslot_2 + deliveryslot_3),", ")])

" - if(analyzer && synced) + if(analyzer && !synced) dat += "Sync Files
" //Cleaning and there are still un-preserved items @@ -666,4 +666,4 @@ desc = "A mounted cargo bay unit for tagged deliveries." icon_state = "decompiler" max_item_count = 20 - delivery = TRUE \ No newline at end of file + delivery = TRUE