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()