Bug - Fixed Clan snapshot not detecting GN or Nuclear autumn runs

icon315

Member
As the title says the snapshots don't seem to pick up any of those two seasonal paths.
A nice addition would be if you could change the "Allow multiple appearances" to "Number of appearances allowed per person"
Also it seems like the Food/Drink Breakdowns break down food not just by type but the amount they consumed.
For example:
  • fishy fish lasagna (599): 1
  • fishy fish lasagna (843): 1
  • flavorless gruel (4): 1
  • fortune cookie (1,229): 1
  • fortune cookie (1,330): 1
  • fortune cookie (1,365): 1
 
Last edited:

icon315

Member
These changes should fix all the above bugs.
PHP:
//AscensionHistoryRequest.java
//line 825
columns[ 3 ].contains( "JICK" ) ? AscensionSnapshot.GELATINOUS_NOOB :
//to
columns[ 3 ].contains( "gelatinousicon" ) ? AscensionSnapshot.GELATINOUS_NOOB :



//line 858
columns[ 8 ].contains( "gelatinousicon" ) ? AscensionSnapshot.GELATINOUS_NOOB :
//to
columns[ 8 ].contains( "radiation" ) ? AscensionSnapshot.NUCLEAR_AUTUMN :
columns[ 8 ].contains( "gcube" ) ? AscensionSnapshot.GELATINOUS_NOOB :
PHP:
//ProfileRequest.java
//line 303
this.food = st.nextToken().trim();
//to
this.food = st.nextToken().replaceFirst("\\(\\d+\\)*", "").trim();



//line 316
this.drink = st.nextToken().trim();
//to
this.drink = st.nextToken().replaceFirst("\\(\\d+\\)*", "").trim();
 
Top