Skip to content

Instantly share code, notes, and snippets.

@brewk
Created January 22, 2020 21:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brewk/23c91b37319e932626b976e0e28e62f8 to your computer and use it in GitHub Desktop.
Save brewk/23c91b37319e932626b976e0e28e62f8 to your computer and use it in GitHub Desktop.
// new raid has finally been added!
// you will need to manually add 8 columns to the right of the last raid for
// then change your version number (around line 76) to 4.4
var current_version = 4.4;
//next up, change the 43 to 44 in this statement, around line 795
for (i = 40; i <= 43; i++) // BfA raids start at 40, increase i <= when more are released
{
raidInstancesSortOrder.push(toon.progression.raids[i].name);
}
//finally.. we fix an error on the api, find this line around line 849:
var nameForInstance = "";
//and insert this directly below it:
//take care of blizzard's totally "Nomral" typo on hivemind
if (info[0] === "Nomral")
{
info[0] = "Normal";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment