fronobulax- sorry did not mean to disparage eat drink. yours is another script that has been awesome over the years. I was poking around in the files trying to find where in the scripts where that file then tells eat drink to reach 15 spleen. if that can get turned off i suspect the spleen nerf will be a minor bump
No apology needed. When the spleen nerf happened there were a whole lot of people who thought the problem was with eatDrink and not with the call to eatDrink. I thought the issue had been dealt with but maybe it wasn't Harvest.
Lines 1095-1099 in Harvest
Code:
if(my_fullness() < fullness_limit()-cookie_room || my_inebriety() < inebriety_limit() || my_spleen_use() < spleen_limit()) {
print(CONSUME_SCRIPT +" failed to fill your organs completely", "red");
print("Desired fullness: " + (fullness_limit()-cookie_room) + " food " + inebriety_limit() + " drunk " + spleen_limit() + " spleen", "red");
print("Attained fullness: " + my_fullness() + " food " + my_inebriety() + " drunk " + my_spleen_use() + " spleen", "red");
}
If you delete the last clause "|| my_spleen_use() < spleen_limit()" that should stop Harvest from aborting because the spleen was not filled.
Line 354 also uses spleen_limit() but I'm not sure the test has any practical effect.