From 5c6658ab580a24613c5fb202733d9cf44b15377e Mon Sep 17 00:00:00 2001 From: TheGamerdk <5618080+TheGamerdk@users.noreply.github.com> Date: Wed, 10 Apr 2024 18:52:56 +0200 Subject: [PATCH 1/3] Update vr_sleeper.dm --- code/modules/VR/vr_sleeper.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/VR/vr_sleeper.dm b/code/modules/VR/vr_sleeper.dm index 5516beaadeed..a6bb0c9648af 100644 --- a/code/modules/VR/vr_sleeper.dm +++ b/code/modules/VR/vr_sleeper.dm @@ -177,6 +177,8 @@ vr_human.undershirt = H.undershirt vr_human.underwear = H.underwear vr_human.updateappearance(TRUE, TRUE, TRUE) + if(!is_synth(vr_human) || !ishumanbasic(vr_human)) + vr_human.set_species(/datum/species/human) if(outfit) var/datum/outfit/O = new outfit() O.equip(vr_human) From 597c3939f6e8ee413635e88577dafe790bdfaeca Mon Sep 17 00:00:00 2001 From: TheGamerdk <5618080+TheGamerdk@users.noreply.github.com> Date: Mon, 15 Apr 2024 18:23:38 +0200 Subject: [PATCH 2/3] Update vr_sleeper.dm --- code/modules/VR/vr_sleeper.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/VR/vr_sleeper.dm b/code/modules/VR/vr_sleeper.dm index a6bb0c9648af..105553a7f885 100644 --- a/code/modules/VR/vr_sleeper.dm +++ b/code/modules/VR/vr_sleeper.dm @@ -177,7 +177,7 @@ vr_human.undershirt = H.undershirt vr_human.underwear = H.underwear vr_human.updateappearance(TRUE, TRUE, TRUE) - if(!is_synth(vr_human) || !ishumanbasic(vr_human)) + if(!(is_synth(vr_human) || ishumanbasic(vr_human)) vr_human.set_species(/datum/species/human) if(outfit) var/datum/outfit/O = new outfit() From f3b3d3f1cafddbe6af840f854e93cd773a06461b Mon Sep 17 00:00:00 2001 From: TheGamerdk <5618080+TheGamerdk@users.noreply.github.com> Date: Mon, 15 Apr 2024 18:28:14 +0200 Subject: [PATCH 3/3] Fixes --- code/modules/VR/vr_sleeper.dm | 2 +- code/modules/clothing/outfits/vr.dm | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/code/modules/VR/vr_sleeper.dm b/code/modules/VR/vr_sleeper.dm index 105553a7f885..5464601959fe 100644 --- a/code/modules/VR/vr_sleeper.dm +++ b/code/modules/VR/vr_sleeper.dm @@ -177,7 +177,7 @@ vr_human.undershirt = H.undershirt vr_human.underwear = H.underwear vr_human.updateappearance(TRUE, TRUE, TRUE) - if(!(is_synth(vr_human) || ishumanbasic(vr_human)) + if(!(is_synth(vr_human) || ishumanbasic(vr_human))) vr_human.set_species(/datum/species/human) if(outfit) var/datum/outfit/O = new outfit() diff --git a/code/modules/clothing/outfits/vr.dm b/code/modules/clothing/outfits/vr.dm index 1d81c2db9204..0f154379ff28 100644 --- a/code/modules/clothing/outfits/vr.dm +++ b/code/modules/clothing/outfits/vr.dm @@ -11,8 +11,6 @@ var/obj/item/card/id/id = H.wear_id if (istype(id)) id.access |= get_all_accesses() - if(isplasmaman(H)) //sorry plasma people - H.set_species(/datum/species/human) /datum/outfit/vr/syndicate name = "Syndicate VR Operative - Basic"