Bug - Fixed Wrong meat drop used for nuns tracking

psly4mne

Member
The turncount estimate for the nuns quest (in IslandDecorator.java) is based on a meat drop of 800-1250, where it should be 800-1200. This could cause the lower bound on the turncount to be too low at times.
 

Veracity

Developer
Staff member
A more concise way to put this would be:

"KoLmafia thinks the meat drop for a dirty thieving brigand is 800-1250, but more recent spading puts it at 800-1200."

There IS spading, right? Where is it?

(monsters.txt and IslandDecorator.java both need updates, we assume.)
 

psly4mne

Member
The entry in monsters.txt lists a meat drop of 800-1200. Only IslandDecorator.java has the 1250 number.

I don't know where the spading is, but the brigand wiki page lists 1200 as the max, and the meat drop wiki page claims that all meat drops are of the form 0.8x-1.2x, which would make 800-1200 correct.
 

Veracity

Developer
Staff member
Seems like IslandDecorator.java could define the BRIGAND_MIN and BRIGAND_MAX constants via something like this:

Code:
	// Meat drops from dirty thieving brigands
	private static final MonsterData BRIGAND = MonsterDatabase.findMonster( "dirty thieving brigand" );
	private static final int BRIGAND_MIN = BRIGAND.getMinMeat();
	private static final int BRIGAND_MAX = BRIGAND.getMaxMeat();
(with appropriate imports, of course.)
 
Top