From 6c65828dd653978076647ea940ed085322c047ef Mon Sep 17 00:00:00 2001 From: Heroman Date: Tue, 4 Jun 2019 08:19:11 +1000 Subject: [PATCH] Fixes closing laptops with no proper support --- code/modules/modular_computers/computers/subtypes/dev_laptop.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/modular_computers/computers/subtypes/dev_laptop.dm b/code/modules/modular_computers/computers/subtypes/dev_laptop.dm index 3a9cab6bc2..156d67525b 100644 --- a/code/modules/modular_computers/computers/subtypes/dev_laptop.dm +++ b/code/modules/modular_computers/computers/subtypes/dev_laptop.dm @@ -29,7 +29,7 @@ var/supported = FALSE for(var/obj/structure/table/S in loc) supported = TRUE - if(!supported) + if(!supported && !anchored) to_chat(usr, "You will need a better supporting surface before opening \the [src]!") return //VOREStation Addition End