mirror of
https://gitgud.io/lutepickle/rjw_menstruation.git
synced 2024-08-14 22:46:52 +00:00
Let CompExposeData load the base values properly when they're already extant
This commit is contained in:
parent
814d500b45
commit
7c98a49ee3
2 changed files with 3 additions and 3 deletions
Binary file not shown.
|
@ -144,9 +144,9 @@ namespace RJW_Menstruation
|
|||
|
||||
if (Scribe.mode == LoadSaveMode.LoadingVars)
|
||||
{ // For compatibility
|
||||
Scribe_Values.Look(ref baseAlpha, "alphaPermanent", -1, false);
|
||||
Scribe_Values.Look(ref baseAreola, "areolaSizePermanent", -1, false);
|
||||
Scribe_Values.Look(ref baseNipple, "nippleSizePermanent", -1, false);
|
||||
Scribe_Values.Look(ref baseAlpha, "alphaPermanent", baseAlpha / 2, false);
|
||||
Scribe_Values.Look(ref baseAreola, "areolaSizePermanent", baseAreola / 2, false);
|
||||
Scribe_Values.Look(ref baseNipple, "nippleSizePermanent", baseNipple / 2, false);
|
||||
baseAlpha *= 2;
|
||||
baseAreola *= 2;
|
||||
baseNipple *= 2;
|
||||
|
|
Loading…
Reference in a new issue