Updated version and removed a console log

This commit is contained in:
Daniel Xie 2017-05-13 02:32:32 -05:00
parent 9798aae545
commit 142a1cea38
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) {