mirror of
				https://gitgud.io/lutepickle/rjw_menstruation.git
				synced 2024-08-14 22:46:52 +00:00 
			
		
		
		
	Fix wrong comparison in OvulatoryAction
This commit is contained in:
		
							parent
							
								
									cb8a001cdf
								
							
						
					
					
						commit
						2ac4e1f8e5
					
				
					 3 changed files with 2 additions and 1 deletions
				
			
		
										
											Binary file not shown.
										
									
								
							| 
						 | 
					@ -1610,7 +1610,7 @@ namespace RJW_Menstruation
 | 
				
			||||||
                    eggs.Add(new Egg((int)(EggLifespanHours / CycleFactor)));
 | 
					                    eggs.Add(new Egg((int)(EggLifespanHours / CycleFactor)));
 | 
				
			||||||
                    ++ovulated;
 | 
					                    ++ovulated;
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            if(ovulated < ovarypower) ovulated = Math.Max(ovarypower, eggstack);
 | 
					            if(ovulated > ovarypower) ovulated = Math.Min(ovarypower, eggstack);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            ovarypower -= ovulated;
 | 
					            ovarypower -= ovulated;
 | 
				
			||||||
            eggstack = 0;
 | 
					            eggstack = 0;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,4 +1,5 @@
 | 
				
			||||||
Version 1.0.8.9
 | 
					Version 1.0.8.9
 | 
				
			||||||
 | 
					 - Fix bug that sent pawns into menopause very early.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Version 1.0.8.8
 | 
					Version 1.0.8.8
 | 
				
			||||||
 - Fix pawns skipping straight to menopause instead of going through climacteric stages.
 | 
					 - Fix pawns skipping straight to menopause instead of going through climacteric stages.
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue