From d824c7ffcb52193c019ca40e8ab3dedf9a30eaca Mon Sep 17 00:00:00 2001 From: TheGamerdk <5618080+TheGamerdk@users.noreply.github.com> Date: Sat, 6 Apr 2024 11:56:14 +0200 Subject: [PATCH] Update vr_human.dm --- code/modules/VR/vr_human.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/VR/vr_human.dm b/code/modules/VR/vr_human.dm index 719a676498a3..041ba39070bc 100644 --- a/code/modules/VR/vr_human.dm +++ b/code/modules/VR/vr_human.dm @@ -20,6 +20,8 @@ /mob/living/carbon/human/virtual_reality/Destroy() revert_to_reality() for(var/obj/item/I in get_all_contents()) + if(I.item_flags & ABSTRACT) + continue dropItemToGround(I, TRUE, TRUE) return ..()