Bug - Not A Bug Divine items & stat point + new level messages

Nope. We just print exactly what KoL supplies to us. What is the "bug"?

ResultProcessor.java:

Code:
		if ( lastToken.startsWith( "You gain a" ) || lastToken.startsWith( "You gain some" ) )
		{
			RequestLogger.printLine( lastToken );
			if ( Preferences.getBoolean( "logStatGains" ) )
			{
				RequestLogger.updateSessionLog( lastToken );
			}

			return true;
		}
 
There is a known bug within KOL regarding gaining stat points within combat. This includes divines, red rays, hipster stats, etc. I've reported it and I think it's pretty low priority for them.
 
Back
Top