Bug - Waiting for Info Rare libram summons on skills.php are skipped

heeheehee

Developer
Staff member
I just summoned a green taffy via skills.php (the chat command will trigger this), and _taffyRareSummons didn't get incremented. Looking at ResultProcessor.java,
Code:
		case ItemPool.BRICKO_EYE:
			if ( RequestLogger.getLastURLString().startsWith( "campground.php" ) )
			{
				Preferences.increment( "_brickoEyeSummons" );
			}
			break;

		case ItemPool.DIVINE_CHAMPAGNE_POPPER:
		case ItemPool.DIVINE_CRACKER:
		case ItemPool.DIVINE_FLUTE:
			if ( RequestLogger.getLastURLString().startsWith( "campground.php" ) )
			{
				Preferences.increment( "_favorRareSummons" );
			}
			break;

		case ItemPool.YELLOW_TAFFY:
		case ItemPool.GREEN_TAFFY:
		case ItemPool.INDIGO_TAFFY:
			if ( RequestLogger.getLastURLString().startsWith( "campground.php" ) )
			{
				Preferences.increment( "_taffyRareSummons" );
			}
			break;
this applies to divine favors and bricko, as well.
 
Top