diff --git a/data/life/life.js b/data/life/life.js
index 3165be99..55e57c97 100644
--- a/data/life/life.js
+++ b/data/life/life.js
@@ -288,7 +288,10 @@ function inputCardArtName(cardArtNameInput) {
function inputCardArtNameNumber(cardArtNameNumberInput) {
playerList[parseInt(document.getElementById('inputPlayer').value) - 1].canvas.customVarImage.src = cardArtUrlList[cardArtNameNumberInput - 1]
}
-// document.getElementById("mainGrid").addEventListener("touchmove", function(event) {
-// event.preventDefault()
-// console.log("it ran?")
-// }, false)
\ No newline at end of file
+document.getElementById("mainGrid").addEventListener("touchmove", function(event) {
+ event.preventDefault()
+ console.log("it ran?")
+}, false)
+function rollRNG() {
+ document.getElementById("rngOutput").innerHTML = Math.floor(Math.random() * (parseInt(document.getElementById("inputRNGMax").value) - parseInt(document.getElementById("inputRNGMin").value) + 1) + parseInt(document.getElementById("inputRNGMin").value))
+}
\ No newline at end of file
diff --git a/life.html b/life.html
index 95d00a07..4e7a6d96 100644
--- a/life.html
+++ b/life.html
@@ -74,6 +74,13 @@
+