This is completely random but I just stumbled upon a text file from years ago when I was modding an old version (0.2.6.2) where I had written down some bugs I had found in the original code. Maybe they're all fixed now, but I'll post them just in case:
Line 77197:
should be
Line 54946 (and following):
should be
Line 138108 (and following):
should be
Line 158656:
should be
In general submission checks aren't consistent, usually it's lte/gt 850, but sometimes it's lt/gte 850.
Again, these are for v0.2.6.2 and I don't know what lines they correspond to in the current version.
Line 77197:
Code:
<<if $allure gte 8000>><<set $allure to 8000>><</if>>
Code:
<<if $allure gte 8000 * $alluremod>><<set $allure to 8000 * $alluremod>><</if>>
Line 54946 (and following):
Code:
<<if $exhibitionismaction is "exited">>
Code:
<<if $exhibitionismaction is "excited">>
Line 138108 (and following):
Code:
$worn.lower
Code:
$worn.under_lower
Line 158656:
Code:
<<if $submissive gte 500>>
Code:
<<if $submissive lte 500>>
Again, these are for v0.2.6.2 and I don't know what lines they correspond to in the current version.