mirror of
				https://gitgud.io/lutepickle/rjw_menstruation.git
				synced 2024-08-14 22:46:52 +00:00 
			
		
		
		
	Fix configuration
This commit is contained in:
		
							parent
							
								
									105c4df01f
								
							
						
					
					
						commit
						814f1c085e
					
				
					 2 changed files with 5 additions and 5 deletions
				
			
		
										
											Binary file not shown.
										
									
								
							| 
						 | 
					@ -203,7 +203,7 @@ namespace RJW_Menstruation
 | 
				
			||||||
            Scribe_Values.Look(ref UseHybridExtention, "UseHybridExtention", UseHybridExtention, true);
 | 
					            Scribe_Values.Look(ref UseHybridExtention, "UseHybridExtention", UseHybridExtention, true);
 | 
				
			||||||
            Scribe_Values.Look(ref MotherFirst, "MotherFirst", MotherFirst, true);
 | 
					            Scribe_Values.Look(ref MotherFirst, "MotherFirst", MotherFirst, true);
 | 
				
			||||||
            Scribe_Values.Look(ref MaxBreastIncrementFactor, "MaxBreastIncrementFactor", MaxBreastIncrementFactor, true);
 | 
					            Scribe_Values.Look(ref MaxBreastIncrementFactor, "MaxBreastIncrementFactor", MaxBreastIncrementFactor, true);
 | 
				
			||||||
            Scribe_Values.Look(ref MaxNippleIncrementFactor, "MaxNippleImcrementFactor", MaxNippleIncrementFactor, true);
 | 
					            Scribe_Values.Look(ref MaxNippleIncrementFactor, "MaxNippleIncrementFactor", MaxNippleIncrementFactor, true);
 | 
				
			||||||
            Scribe_Values.Look(ref PermanentNippleChange, "PermanentNippleChange", PermanentNippleChange, true);
 | 
					            Scribe_Values.Look(ref PermanentNippleChange, "PermanentNippleChange", PermanentNippleChange, true);
 | 
				
			||||||
            Scribe_Values.Look(ref AllowShrinkIcon, "AllowShrinkIcon", AllowShrinkIcon, true);
 | 
					            Scribe_Values.Look(ref AllowShrinkIcon, "AllowShrinkIcon", AllowShrinkIcon, true);
 | 
				
			||||||
            Scribe_Values.Look(ref EggLifespanMultiplier, "EggLifespanMultiplier", EggLifespanMultiplier, true);
 | 
					            Scribe_Values.Look(ref EggLifespanMultiplier, "EggLifespanMultiplier", EggLifespanMultiplier, true);
 | 
				
			||||||
| 
						 | 
					@ -281,7 +281,7 @@ namespace RJW_Menstruation
 | 
				
			||||||
            Widgets.CheckboxLabeled(middleAndRightCells.RightHalf(), Translations.Option_EnableGatherCumGizmo_Label, ref Configurations.EnableGatherCumGizmo, false, null, null, true);
 | 
					            Widgets.CheckboxLabeled(middleAndRightCells.RightHalf(), Translations.Option_EnableGatherCumGizmo_Label, ref Configurations.EnableGatherCumGizmo, false, null, null, true);
 | 
				
			||||||
            if (Configurations.EnableWombIcon || Configurations.EnableButtonInHT)
 | 
					            if (Configurations.EnableWombIcon || Configurations.EnableButtonInHT)
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
                Listing_Standard wombsection = listmain.BeginSection(400);
 | 
					                Listing_Standard wombsection = listmain.BeginSection(350);
 | 
				
			||||||
                wombsection.CheckboxLabeled(Translations.Option9_Label, ref Configurations.DrawWombStatus, Translations.Option9_Desc);
 | 
					                wombsection.CheckboxLabeled(Translations.Option9_Label, ref Configurations.DrawWombStatus, Translations.Option9_Desc);
 | 
				
			||||||
                if (Configurations.DrawWombStatus)
 | 
					                if (Configurations.DrawWombStatus)
 | 
				
			||||||
                {
 | 
					                {
 | 
				
			||||||
| 
						 | 
					@ -339,17 +339,17 @@ namespace RJW_Menstruation
 | 
				
			||||||
                    Configurations.ShowFlag ^= Configurations.PawnFlags.Hostile;
 | 
					                    Configurations.ShowFlag ^= Configurations.PawnFlags.Hostile;
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                Adjust = (int)(Configurations.MaxBreastIncrementFactor * 1000);
 | 
					                Adjust = (int)(Configurations.MaxBreastIncrementFactor * 100);
 | 
				
			||||||
                wombsection.Label(Translations.Option_MaxBreastIncrementFactor_Label + " " + Configurations.MaxBreastIncrementFactor * 100 + "%", -1, Translations.Option_MaxBreastIncrementFactor_Desc);
 | 
					                wombsection.Label(Translations.Option_MaxBreastIncrementFactor_Label + " " + Configurations.MaxBreastIncrementFactor * 100 + "%", -1, Translations.Option_MaxBreastIncrementFactor_Desc);
 | 
				
			||||||
                Adjust = (int)wombsection.Slider(Adjust, 0, 1000);
 | 
					                Adjust = (int)wombsection.Slider(Adjust, 0, 1000);
 | 
				
			||||||
                Configurations.MaxBreastIncrementFactor = (float)Adjust / 100;
 | 
					                Configurations.MaxBreastIncrementFactor = (float)Adjust / 100;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                Adjust = (int)(Configurations.MaxNippleIncrementFactor * 1000);
 | 
					                Adjust = (int)(Configurations.MaxNippleIncrementFactor * 100);
 | 
				
			||||||
                wombsection.Label(Translations.Option_MaxNippleIncrementFactor_Label + " " + Configurations.MaxNippleIncrementFactor * 100 + "%", -1, Translations.Option_MaxNippleIncrementFactor_Desc);
 | 
					                wombsection.Label(Translations.Option_MaxNippleIncrementFactor_Label + " " + Configurations.MaxNippleIncrementFactor * 100 + "%", -1, Translations.Option_MaxNippleIncrementFactor_Desc);
 | 
				
			||||||
                Adjust = (int)wombsection.Slider(Adjust, 0, 1000);
 | 
					                Adjust = (int)wombsection.Slider(Adjust, 0, 1000);
 | 
				
			||||||
                Configurations.MaxNippleIncrementFactor = (float)Adjust / 100;
 | 
					                Configurations.MaxNippleIncrementFactor = (float)Adjust / 100;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                Adjust = (int)(Configurations.PermanentNippleChange * 1000);
 | 
					                Adjust = (int)(Configurations.PermanentNippleChange * 2500);
 | 
				
			||||||
                wombsection.Label(Translations.Option_PermanentNippleChange_Label + " " + Configurations.PermanentNippleChange, -1, Translations.Option_PermanentNippleChange_Desc);
 | 
					                wombsection.Label(Translations.Option_PermanentNippleChange_Label + " " + Configurations.PermanentNippleChange, -1, Translations.Option_PermanentNippleChange_Desc);
 | 
				
			||||||
                Adjust = (int)wombsection.Slider(Adjust, 0, 1000);
 | 
					                Adjust = (int)wombsection.Slider(Adjust, 0, 1000);
 | 
				
			||||||
                Configurations.PermanentNippleChange = (float)Adjust / 2500;
 | 
					                Configurations.PermanentNippleChange = (float)Adjust / 2500;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue