diff --git a/js/html_actuator.js b/js/html_actuator.js index 08eea75c031258eacfe4c687fb7178666009e91f..d840068866fd2f19943db5e794c3ded50fc64690 100644 --- a/js/html_actuator.js +++ b/js/html_actuator.js @@ -57,7 +57,7 @@ HTMLActuator.prototype.addTile = function (tile) { // We can't use classlist because it somehow glitches when replacing classes var classes = ["tile", "tile-" + tile.value, positionClass]; - if (tile.value > 2048) classes.push("tile-gold"); + if (tile.value > 2048) classes.push("tile-super"); this.applyClasses(wrapper, classes);