- //Exhibitionism reduction!
- if
- ( !(pc.armor is EmptySlot)
- && !(pc.lowerUndergarment is EmptySlot || pc.lowerUndergarment.hasFlag(GLOBAL.ITEM_FLAG_EXPOSE_FULL) || pc.lowerUndergarment.hasFlag(GLOBAL.ITEM_FLAG_EXPOSE_GROIN) || pc.lowerUndergarment.hasFlag(GLOBAL.ITEM_FLAG_EXPOSE_ASS))
- && !(pc.upperUndergarment is EmptySlot || pc.upperUndergarment.hasFlag(GLOBAL.ITEM_FLAG_EXPOSE_FULL) || pc.upperUndergarment.hasFlag(GLOBAL.ITEM_FLAG_EXPOSE_CHEST))
- )
- {
- if(pc.isChestExposed() && pc.isCrotchExposed() && pc.isAssExposed())
- { /* No reduction for a full set of exposed clothing! */ }
- else pc.exhibitionism(-0.5);
- }
changed to just
+ //Exhibitionism reduction! Reduces exhibition if chest, crotch and ass are not all exposed
+ if(!(pc.isCrotchExposed() && pc.isAssExposed() && pc.isChestExposed()))
+ pc.exhibitionism(-0.5);
No longer can you avoid losing exhibitionism progress by simply leaving an undergarment naked. Now, you have to have something exposed when the clock strikes midnight or half a percent of exhibitionism turns back into a pumpkin.
Was this intended? Birujo y u do dis?
- if
- ( !(pc.armor is EmptySlot)
- && !(pc.lowerUndergarment is EmptySlot || pc.lowerUndergarment.hasFlag(GLOBAL.ITEM_FLAG_EXPOSE_FULL) || pc.lowerUndergarment.hasFlag(GLOBAL.ITEM_FLAG_EXPOSE_GROIN) || pc.lowerUndergarment.hasFlag(GLOBAL.ITEM_FLAG_EXPOSE_ASS))
- && !(pc.upperUndergarment is EmptySlot || pc.upperUndergarment.hasFlag(GLOBAL.ITEM_FLAG_EXPOSE_FULL) || pc.upperUndergarment.hasFlag(GLOBAL.ITEM_FLAG_EXPOSE_CHEST))
- )
- {
- if(pc.isChestExposed() && pc.isCrotchExposed() && pc.isAssExposed())
- { /* No reduction for a full set of exposed clothing! */ }
- else pc.exhibitionism(-0.5);
- }
changed to just
+ //Exhibitionism reduction! Reduces exhibition if chest, crotch and ass are not all exposed
+ if(!(pc.isCrotchExposed() && pc.isAssExposed() && pc.isChestExposed()))
+ pc.exhibitionism(-0.5);
No longer can you avoid losing exhibitionism progress by simply leaving an undergarment naked. Now, you have to have something exposed when the clock strikes midnight or half a percent of exhibitionism turns back into a pumpkin.
Was this intended? Birujo y u do dis?