Feature - Implemented [patch] Track fancy chocolate scuplture phenomenon and warn if you're going to waste

Thanks for merging. Sadly I noticed a tiny typo

Code:
				int sculptures = Preferences.getInteger( "_chocolateSculpturesUsed" );
				Preferences.setInteger( "_chocolateSculpturesUsed", Math.max(sculptures, 4) );

should be


Code:
				int sculptures = Preferences.getInteger( "_chocolateSculpturesUsed" );
				Preferences.setInteger( "_chocolateSculpturesUsed", Math.max(sculptures + 1, 4) );

the feature should work fine without it of course but with this typo it might as well be

Code:
				Preferences.setInteger( "_chocolateSculpturesUsed", 4 );
 
Back
Top