Skip to content
Snippets Groups Projects
CHANGELOG.md 156 KiB
Newer Older
  • Learn to ignore specific revisions
  • 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000
    
    	305
    * fixed issues with orphanage recruits
    * small text fixes
    * fixed mistargeted spans in custom slave
    * fixed infinite JFC looping
    * fixed childgen getting confused when the player fathered a slave
    * limited height surgeries to +- 15cm from expected average
    * anon's economy tweaks
    * crimeanon's fixes
    
    	304
    * anon's tweaks
    * removed leftover code from RESS
    
    	303
    * anon's corp tweaks
    
    	302
    * fixed missing span in JFC
    
    	301
    * anon's corp tweaks
    
    2018-01-27
    
    	300
    * anon's corp tweaks
    * fixed the upgraded dispensary giving 50% off the reduced value instead of the original
    
    	299.2
    * and now they are nuns and priests
    
    	299.1
    * clergy capture slaves are now virgins
    
    	299
    * converted anon's submitted clergy capture event into the second Chattel Religionist FS acquisition event
    * SFanon's fixes and tweaks
    * phase 4 work
    * fixed the dispensary giving 75% off instead of 25% off
    
    	298
    * fixed the flesh heap only giving amps if $seeExtreme was off
    
    	297
    * fixed minor bug in JFC
    
    2018-01-26
    
    	296
    * SFanon's job fulfillment center slave market
    * anon's various fixes and tweaks
    
    	295
    * starting girls can now be set to mindbroken
    * fixed some age bugs in reRecruit
    
    2018-01-25
    
    	294
    * consolidated player asset descriptions
    * femPC can now officially be flat
    
    	293
    * added a see pregnancy toggle to game options
    * crimeanon's secEx fixes
    
    2018-01-24
    
    	292
    * continued implementation of $seePreg
    
    	291
    * partial implementation of $seePreg
    
    2018-01-23
    
    	290
    * small tweaks to FResult
    * fixed minor bugs
    * initialized .nipplesAccessory and $seePreg
    
    2018-01-22
    
    	289
    * anon's continued tweaking
    
    	288
    * SFanon's fixes to SFMBarracks
    * phase 4 work
    * XY ads now check for a dick instead of the lack of a vagina
    * tweaked combat arms deadliness to actually add deadliness
    * starting girls now properly tells you their genes
    
    2018-01-21
    
    	287
    * anon's continued tweaks
    * fixed reversed degradationist check in new slave intro
    * cleaned up chattel religionist's clothing choices in saLongTermEvents
    
    	286
    * minor fixes
    * anon's income tweaks
    * anon's vignettes
    
    2018-01-19
    
    	285
    * SFanon's fixes
    
    	284
    * fixed advertising issues regarding implants
    * fixed minor text issues
    
    	283
    * fixed reversed futanari sisters career effects
    * minor text fixes
    
    	282
    * Crimeanon's tweaks
    * SFanon's tweaks and SF cheat edit
    * minor fixes
    * tweaked eugenics breeding proposal to reflect post SE rebellion
    * refiled chains under harsh clothing
    
    2018-01-18
    
    	281
    * fixed introSummary breast setting
    * fixed an oversight in authorityReport
    
    2018-01-17
    
    	280
    * fixed multitude of problems brought in with v278
    
    	279
    * fixed severe issue with "work as a servant"
    
    	278
    * variety of contributed fixes and corrections
    
    2018-01-16
    
    	277
    * fixed minor display issues
    * fixed potential $rep cause in involving SF's Colonel (or fucked up the check and made it worse)
    * added .ovaryAge to the cheat edit slaves
    
    2018-01-15
    
    	276
    * fixed improper belly size unsetting in saInflation
    * slave on slave feeding now properly clears its variable
    * increased cost reduction of servant's quarters
    * added more mindbroken checks to cull inappropriate emotion
    
    	275
    * various overlooked mindbreak checks added
    * phase 4 work
    
    2018-01-14
    
    	274
    * fixed broken saWhore vignette
    * tweaked how sex counts work in the schoolroom
    
    	273
    * fixed minor display bugs
    * warded against odd .burst hostage inheritance
    
    2018-01-13
    
    	272
    * fixes to saRecruitGirls
    
    	271
    * many new incest two slave recruit combinations
    * small fixes
    
    2018-01-12
    
    	270
    * fixed bad RESS choice
    * tweaked puberty events
    
    	269
    * servants can now qualify for a reduced selection of random events
    	They are always around, after all.
    
    	268
    * fixes to policies and master suite
    
    	267
    * fixed age ads getting set to 0 when they shouldn't be
    
    	266
    * Gutted random event selection and recoded it as JS
    * Crimeanon's fixes
    * SFanon's fixes
    * minor fixes and typos corrections
    
    2018-01-10
    
    	265
    * fVagina fixes
    * SFanon's cleaning
    
    	264
    * allowed master suite slaves into RESS eligibility
    
    	263
    * The rest of SFanon's fixes
    * minor corrections
    * fixed a number of ".SlaveName"s
    
    	262
    * SFanon's fixes and policy cleanup
    
    	261
    * small fixes
    * secEx fixes
    
    2018-01-09
    
    	260
    * fixes to advertising
    
    	259.2
    * fixed fVagina, again
    
    	259.1
    * fixed fVagina
    
    	259
    * fixes
    * phase 4 work
    * anons FCTV channel and story
    
    2018-01-06
    
    	258
    * fixes
    * phase 4 work
    * backwards compatibility fixes for vanilla to pregmod saves
    
    2018-01-06
    
    	257
    * fixes
    * phase 4 work
    * personal attention now respects chastity better
    
    	256
    * Fully established eugenics is now abandonable after you've dealt with the uppity SE.
    * Corncobman's brothel/club advertisement and code tweaks
    * SFanon's fixes
    
    2018-01-04
    
    	255
    * fixed reBoomerang bad variables
    
    	254
    * minor typo corrections
    
    	253
    * more minor fixes
    
    	252
    * SFanon's cleaned up introSummary
    * fixed numerous zeroed stats in export slave
    * gave most ddDatabase slaves scrotums
    
    	251
    * tweaked milking arcades to delay slave rotations somewhat (they'll stay healthier longer, but still will eventually require a recovery period)
    * minor fixes
    
    2018-01-03
    
    	250
    * SFanon's stuff
    * minor fixes
    
    2018-01-02
    
    	249
    * Sugarcube updated to 2.22.0
    * fixed lip implants vs natural lips TF check being wrong
    * other small fixes
    
    2018-01-01
    
    	248
    * minor fixes
    
    	247
    * fixed vaginal use incrementing the anal total in the arcade
    
    2017-12-31
    
    	246
    * fixes
    	Fixes include $failedElite not clearing on ng+, excessive oral use and issues with serve you other slaves.
    
    2017-12-30
    
    	245
    * finished .need fixing
    * saServeYouOtherSlaves work
    * minor fixes
    
    	244
    * added stamina pills for player consumption
    
    2017-12-29
    
    	243
    * fixed subordinate slave setting
    
    	242
    * anon's new family tree display (not yet implemented in startingGirls, so don't freak out)
    * various little tweaks
    
    	241
    * fixed bad variable in costs JS
    * fixed unclosed set in endWeek
    
    	240
    * living rules cost optimization
    * code cleanup
    * fixed minor bugs involving the BG's room
    
    2017-12-28
    
    	239
    * fixed reputation bug
    * fixed secBarracks bugs
    
    	238
    * fixed slave summary bug
    
    	237
    * fixes to eugenics bad end
    * SFanons tweaks fixes and content
    * at least one slave in subordinate targeting must have limbs
    
    2017-12-27
    
    	236
    * fixes
    	RA XXY diets, scalemail bikini errors, bad engineering training and straps/latex showing up inappropriately in the vector art.
    
    	235
    * saRules now applies to the HG's slave
    * HG and BG no longer consume dormitory capacity if they have their own room
    * SFanon's fixes
    
    2017-12-26
    
    	234
    * SFanon's fixes and numbers commaing
    
    	233
    * fixes
    
    	232
    * saRules now applies to the master suite
    * various little text fixes
    
    2017-12-25
    
    	231
    * saRules now applies fully to the dairy
    
    	230.2
    * minor elseif if catch in saPleaseYou
    
    2017-12-24
    
    	230.1
    * quick revert to lastEyeSurgery()
    
    	230
    * fixed eyes autosurgery?
    
    	229
    * fixes
    * QoL changes to unit management in secEx
    	Fixes include the swan song follow-up never happening, RA getting too controlling about fertility drugs and incorrectly displayed training costs.
    
    	228
    * code improvements
    * SFanon's player skill stuff
    
    2017-12-23
    
    	227
    * various text fixes
    
    	226
    * fix for removeActiveSlave incubator quirks
    
    	225
    * SFanon's fixes
    * Milkmaid saRules
    
    	224
    * SFanon's fixes
    * a bunch of lisping tweaks
    
    2017-12-22
    
    	223
    * SFanon's stuff (mostly comma'd numbers)
    
    	222
    * SFanon's stuff
    
    	221
    * fixed servants quarters bugs
    
    2017-12-21
    
    	220
    * saRules now applies to the servants quarters
    * fixes
    	Fixed an issue with reMalefactor displaying the wrong text block.
    
    	219
    * fixes
    	More cache clearing, fixes to reBoomerang preg setters and a typo in raWidgets causing trouble.
    
    2017-12-20
    
    	218
    * SFanon's tweaks
    
    	217
    * fixed sex count NaN in saRules-schoolroom
    * tweaked childgen to use current father name
    
    2017-12-19
    
    	216
    * saRules now applies to the schoolroom
    * fixes
    
    2017-12-18
    
    	215
    * fixed brothel devotion oddities
    * adjusted arcology sector demand
    * optional comma'd numbers
    	Every purchase and selling of an arcology sector will now make the next more expensive. Selling one increases it more than buying one, so while it may bring in quick money will make it more difficult to reacquire.
    
    	214
    * saRules now applies to the spa
    	Also fixed luxury rules being retained when removed from certain facilities. Those will now default to "normal".
    
    2017-12-17
    
    	213
    * lots of spelling corrections
    * fixes
    
    	212
    * fixes
    * new outcome for reRebels
    
    2017-12-16
    
    	211
    * fixes
    
    	210
    * fixed "psychosupresants"
    
    	209
    * minor fixes
    
    2017-12-15
    
    	208
    * saRules now applies to the cellblock
    * new cellblock setting to forbid your wardeness from cumming inside your prisoners
    * git contributed fixes
    * Inflation settings are also now restricted for the cellblock, similar to the dairy and arcade.
    
    2017-12-13
    
    	207
    * git contributed code simplification and fixes
    
    	206
    * git contributed fixes
    
    2017-12-12
    
    	205
    * git contributed fixes and muscle range expansion to custom slave/starting girls
    
    	204
    * saRules now applies to the clinic
    
    	203
    * fixed bad if in saRules
    
    	202
    * fixes
    
    2017-12-11
    
    	201
    * SFanons stuff
    
    	200
    * saRules now applies to the club
    
    	199
    * fixes
    
    	198
    * fixes
    * saRules now applies to the brothel
    
    2017-12-10
    
    	197
    * anon's tweaks
    	Mostly little cheat edit tweaks to secEx.
    
    	196
    * fixes
    * saRules tinkering
    
    2017-12-09
    
    	195.1
    	Should fix >>149556
    
    	195
    * fixes
    * saRules tinkering
    
    	194.1
    * same fix as >>149491 (Broken pharmaceutical fabricator purchase option)
    
    	194
    * SFanon's passive PC skill gaining
    * anon's various additions and corrections
    * fixes
    
    2017-12-08
    
    	193
    * fixes
    
    	192
    * anon's leadership slave skills
    * fixes
    
    2017-12-06
    
    	191
    * SFanon's fixes
    * Crimeanon's fixes
    
    	190
    * SFanon's fixes
    
    	189
    * fixes and tweaks
    
    	188
    * fixes
    * SFanon's fixes
    * secEx tweaks
    
    2017-12-05
    
    	187
    * fixes
    * SFanon's fixes
    
    	186
    * fixes
    * SFanon's stuff
    
    	185
    * fixed <<m>>
    
    	184
    * tweaks to pregnancy breast growth
    * pregnancy overhaul phase 3 (belly implants) completed
    
    	183
    * SugarCube 2.21.0
    * continued bellyImplant work
    
    2017-12-04
    
    	182
    * fixes
    
    	181
    * fixes
    * reduced value of milk and cum
    * continued bellyImplant work
    
    	180
    * fixes
    
    	179
    * fixes
    * FSanon's custom slave voice options
    * continued bellyImplant work
    
    2017-12-03
    
    	178
    * fixes
    
    2017-12-02
    
    	177
    * fixes
    
    	176
    * fixed bugs
    
    	175
    * added anon's siren song part 2
    * fixes
    * added tracking to ng+ slaves to keep them from stealing the spotlight in certain current game events
    
    	174
    * added SFanon's eye and hair autosurgery settings
    
    	173
    * The Hippolyta Academy added
    * fixes
    
    2017-12-01
    
    	172
    * SFanon's stuff
    * anon's slave self impregnation
    * fixes
    
    	171
    * fixed .pregSource not handling ng+
    * tweaked childgen
    
    2017-11-30
    
    	170
    * added vector art anon's bushy pits
    * tweaked childgen
    
    	169
    * SFanon's fixes
    * Doubled non size related bonuses in GR's big butt policy for slimness societies to offset the negative of big butts
    
    2017-11-29
    
    	168
    * disabled broken vector
    * escorts now have a slight edge when it comes to teaching slaves sex skills
    
    	167
    * SecEx battle prestige
    
    	166
    * fixes
    * some minor tweaks
    
    	165
    * fixes
    * dairy entry tweaks
    * color tweaking
    
    2017-11-28
    
    	164
    * fixes
    * continued color wars
    
    	163
    * minor fixes
    * color standardization/what the fuck does this color even mean?
    
    	162
    * fixes
    * SFanon's fixes
    * Crimeanon's fixes
    
    2017-11-27
    
    	161
    * fixed custom slaves making all slaves their race
    
    	160
    * fixed reRecruit
    
    	159
    * fixed bugs
    * added a policy for open slave dick use
    
    2017-11-26
    
    	158
    * fixed lactation implant dairy setting bug
    
    	157
    * added rumor reduction to reputation policies SecEx:
    * discounts for applicable PC experience
    * cyber upgrade for units
    
    2017-11-25
    
    	156
    * SFanon's fixes and tweaks
    
    	155
    * fixed princes
    
    	154
    * fixed FCTV channels 12 and 13 not showing reruns should they run out of content
    
    	153
    * Security Expansion mod officially added
    * finished phase 2 of the pregnancy overhaul (inflation overhaul)
    * added the option to not implant cattle for lactation implants to the dairy
    * fixes
    
    2017-11-23
    
    	152
    * fixes
    * changes to whoring/slutting/hole need
    * continued inflation work
    
    	151
    * fixes
    * tweaks to BP and TF in regards to extreme facial surgery and race alteration
    * continued inflation changes
    * SFanon's stuff
    
    2017-11-21
    
    	150
    * tweaks
    
    	149
    * custom slave overhaul
    
    2017-11-20
    
    	148
    * added settings to enable/disable lactation implants in flat slaves
    
    	147
    * fix
    
    	146
    * fixes
    * dairy now only increases breasts in lactating slaves and the stimulators increase cum output
    
    
    	145
    * fixes
    * new SJW recruit
    * dairy slaves will only receive lactation implants if they have no dick, have breasts larger than flat, or are already lactating naturally.
    * nationality reweighting
    
    2017-11-19
    
    	144
    * The daughters of liberty now require combatants to pass a physical before deployment (the captures will be in a more reasonable fighting shape)
    
    	143
    * SFanon's stuff
    
    	142
    * fixes
    
    	141
    * completed new vanilla country additions
    * fixes
    
    2017-11-18
    
    	140
    * fixes
    * SFanon's stuff
    
    	139
    * fixes
    
    	138
    * fixes
    * SFanon's stuff
    
    2017-11-17
    
    	137
    * fixes
    * began inflation rework stage of pregnancy overhaul (phase 2)
    
    2017-11-16
    
    	136
    * fixes
    * RESSTR cleaning completed
    
    	135
    * fix to RA drug reduction targets not subtracting implants
    
    	134
    * major revisions to how temporarily removed slaves are handled
    
    2017-11-15
    
    	133
    * major fixes to temporarily removed slaves
    * fixes
    * removed restrictions on hormone blockers
    * RESSTR event cleaning
    
    
    2017-11-14
    
    	132
    * fix
    
    	131
    * fixes
    * Completed RESS cleanup
    
    	130
    * fixed the free range dairy assignment scene
    * SFanon's stuff
    
    2017-11-13
    
    	129.1
    * more fixes
    
    	129
    * fixes
    
    	128
    * anon's scalemail bikini
    * fixes
    
    	127
    * fixed fFeet
    
    	126
    * fixes
    * major oversight corrections
    * added short stories to FCTV
    * alterations to artWidgets.tw
    
    2017-11-12
    
    	125
    * fixes
    * RESS work
    
    	124
    * fixes
    * dairy diet changes
    
    	123
    * some fixes
    * more RESS work
    
    2017-11-11
    
    	122
    * fixes
    * very bushy pubes
    
    	121
    * fixed >>140790 (<> in the DefaultRules widget is missing a $)
    
    	120
    * fixed bugs
    * removed deprecated "be your recruiter"
    * more RESS stuff
    
    2017-11-09
    
    	119
    * fixes
    
    	118
    * fixes
    
    2017-11-08
    
    	117
    * fixes
    
    	116
    * tweaked supremacist and subjugationist beauty and FResults
    * fixes
    * more RESS work
    
    	115
    * fixes
    * more RESS work
    
    2017-11-07
    
    	114.1
    * fixed >>139762
    
    	114
    * fixed bugs
    * capped devotion gained from max trust to prevent unruly slaves from suddenly loving you
    * more RESS work
    
    2017-11-06
    
    	113
    * fixes
    * added isItemAccessible() to handle those obnoxious checks for FS and purchased items
    
    2017-11-05
    
    	112
    * fixed bugs
    * tweaked choosing own clothes a little
    
    2017-11-04
    
    	111
    * fixes
    
    2017-11-03
    
    	110
    	--fixes
    * vanilla cleanings
    * continued RESS work
    
    2017-11-01
    
    	109
    * fixed >>137381 (mutinery attempt - Cannot read property 'nationality of undefined)
    
    	108
    * fixed self pregnancy confusing childgen
    
    	107
    * fixed reported bugs and family quirks
    
    2017-10-31
    
    	106
    * RESS work
    * hormone blockers now block erections
    
    	105
    * converted the applicable .hormone calls to use .hormoneBalance
    * added hormone blockers to restrict hormone effects and speed normalization while used
    
    2017-10-30
    
    	104
    * fixes
    
    	103
    * hormones rework
    * fixes
    
    2017-10-28
    
    	102
    * fixes
    
    	101
    * fixes
    * Milkanon's channel is live in FCTV
    
    	100
    * fixes
    * fFeet overhaul
    * fFeet moved out of cheatmode
    
    2017-10-27
    	99
    * fixed various bugs
    
    	98