Merge pull request #4 from danielyxie/dev

Dev v 0.2
This commit is contained in:
danielyxie 2017-05-13 02:34:10 -05:00 committed by GitHub
commit fb9e232957
2 changed files with 1 additions and 2 deletions

@ -1,5 +1,5 @@
CONSTANTS = {
Version: "0.1",
Version: "0.2",
//Max level for any skill, assuming no multipliers. Determined by max numerical value in javascript for experience
//and the skill level formula in Player.js. Note that all this means it that when experience hits MAX_INT, then

@ -761,7 +761,6 @@ displayFactionContent = function(factionName) {
displayFactionAugmentations = function(factionName) {
document.getElementById("faction-augmentations-page-desc").innerHTML = "Lists all augmentations that are available to purchase from " + factionName;
var faction = Factions[factionName];
console.log("fac augs: " + faction.augmentations);
var augmentationsList = document.getElementById("faction-augmentations-list");
while (augmentationsList.firstChild) {