var nudistPrevention:Boolean = false;
if((!pc.isChestGarbed() || pc.isChestExposed()) && pc.biggestTitSize() > 1) nudistPrevention = true;
if(!pc.isCrotchGarbed() || pc.isCrotchExposed() || pc.isAssExposed()) nudistPrevention = true;
#Cover yourself with your fuckton of wings
if(pc.wingType() == 29 || pc.wingType() == 30) nudistPrevention = false;
if(nudistPrevention)
{
clearOutput();
output("Nudity is illegal in that location! You'll have to cover up if you want to go there.");
clearMenu();
addButton(0, "SneakBack", sneakBackYouNudist, undefined, "SneakBack", "Sneak back to the ship. Fuckin' prudes. It might take you a couple hours to get back safely.");
addButton(14, "Back", mainGameMenu);
return;
}