From 2eeef1579b9ad31aae103230a4fac2863a6a94b0 Mon Sep 17 00:00:00 2001 From: synth-ruiner Date: Sat, 28 Feb 2015 19:29:02 +0000 Subject: [PATCH] No numbers on clicked mines --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 92ad045..f162e3f 100644 --- a/index.html +++ b/index.html @@ -275,7 +275,7 @@ $(this).getGameboardPos().revealed = true; $(this).addClass("revealed"); - if ($(this).getGameboardPos().mine == true) { + if ($(this).getGameboardPos().mine) { //game over, or lose a life, or whatever $(this).addClass("mine"); } else {