From 34497b9f8081124c8fccddaed34e1eeb00df1ffd Mon Sep 17 00:00:00 2001 From: nicbn Date: Fri, 4 Jan 2019 15:59:18 -0200 Subject: [PATCH] code formatting --- code/modules/VR/vr_sleeper.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/VR/vr_sleeper.dm b/code/modules/VR/vr_sleeper.dm index dbb446b46a6..6c5d51de4f3 100644 --- a/code/modules/VR/vr_sleeper.dm +++ b/code/modules/VR/vr_sleeper.dm @@ -115,20 +115,20 @@ to_chat(occupant, "Virtual world misconfigured, aborting transfer") else to_chat(occupant, "The virtual world does not support the creation of new virtual avatars, aborting transfer") - . = TRUE + return TRUE if("delete_avatar") if(!occupant || usr == occupant) if(vr_human) cleanup_vr_human() else to_chat(usr, "The VR Sleeper's safeties prevent you from doing that.") - . = TRUE + return TRUE if("toggle_open") if(state_open) close_machine() else if ((!occupant || usr == occupant) || !only_current_user_can_interact) open_machine() - . = TRUE + return TRUE /obj/machinery/vr_sleeper/ui_data(mob/user) var/list/data = list()