diff --git a/gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-022/gameUi.js b/gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-022/gameUi.js
index 273bd3d1f..11569f55b 100644
--- a/gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-022/gameUi.js
+++ b/gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-022/gameUi.js
@@ -401,7 +401,7 @@ var GempLotrGameUI = Class.extend({
$("#settingsBox").append("
");
var foilPresentation = $.cookie("foilPresentation");
- if (foilPresentation == "true" || foilPresentation == null) {
+ if (foilPresentation == "true") {
$("#foilPresentation").prop("checked", true);
this.settingsFoilPresentation = true;
}
diff --git a/gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-022/jCards.js b/gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-022/jCards.js
index e1cae3cf0..80219aacd 100644
--- a/gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-022/jCards.js
+++ b/gemp-lotr/gemp-lotr-async/src/main/web/js/gemp-022/jCards.js
@@ -442,10 +442,10 @@ function createCardDiv(image, text, foil, tokens, noBorder, errata) {
function getFoilImg() {
var foilPresentation = $.cookie("foilPresentation");
- if (foilPresentation == "true" || foilPresentation == null) {
- return "foil.gif";
- } else {
+ if (foilPresentation == "false" || foilPresentation == null) {
return "holo.jpg";
+ } else {
+ return "foil.gif";
}
}