This commit is contained in:
Josh Mudge 2017-09-19 13:50:35 -06:00
parent ffdcef9b8b
commit f6e176bb31
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
"use strict";
//Licensed under the Apache License 2.0. See license file for information.
// Ardon Income Calculator v3.1 stable.
// Ardon Income Calculator v3.1.1 stable.
// Written by Josh Mudge
// Ad Mejorem Dei Glorium
@ -68,6 +68,6 @@ function calculate() {
//Show result
alert("Your income is " + total + " Gold");
document.getElementById("Income").innerHTML = "Your Income is " + total + " Gold";
document.getElementById("Income").innerHTML = "Your Income is " + total + " Gold per Minecraft Year (5 days)";
}