mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-13 08:57:01 +01:00
This should fix it
This commit is contained in:
@@ -117,8 +117,10 @@
|
||||
else
|
||||
option = "Fuck"
|
||||
|
||||
var/obj/item/organ/genital/vagina/V = portalunderwear.loc
|
||||
if(!V || !iscarbon(portalunderwear.loc))
|
||||
var/obj/item/organ/genital/vagina/V
|
||||
if(istype(portalunderwear.loc, /obj/item/organ/genital/vagina)) //Sanity check. Without this it will runtime.
|
||||
V = portalunderwear.loc
|
||||
if(!V)
|
||||
return
|
||||
var/mob/living/carbon/human/M = V.owner
|
||||
|
||||
@@ -179,8 +181,10 @@
|
||||
//get their looks and vagina colour!
|
||||
cut_overlays()//remove current overlays
|
||||
|
||||
var/obj/item/organ/genital/vagina/V = portalunderwear.loc
|
||||
if(!V || !iscarbon(portalunderwear.loc))
|
||||
var/obj/item/organ/genital/vagina/V
|
||||
if(istype(portalunderwear.loc, /obj/item/organ/genital/vagina)) //Sanity check. Without this it will runtime.
|
||||
V = portalunderwear.loc
|
||||
if(!V)
|
||||
useable = FALSE
|
||||
return
|
||||
var/mob/living/carbon/human/H = V.owner
|
||||
|
||||
Reference in New Issue
Block a user