diff --git a/templates/brutalism.html b/templates/brutalism.html index bef39b6..8056bd4 100644 --- a/templates/brutalism.html +++ b/templates/brutalism.html @@ -1085,7 +1085,7 @@ : ''; const categoriesBadges = !isOthers && game.categories && game.categories.length > 0 ? game.categories - .filter(cat => cat !== '.hidden' && cat !== 'favorite' && cat !== 'Horny') + .filter(cat => cat !== '.hidden' && cat !== 'favorite') .map(cat => `${cat}`) .join('') : ''; @@ -1110,7 +1110,7 @@ const otherPercent = ((otherGame.playtime / totalPlaytime) * 100).toFixed(1); const otherCategoriesBadges = otherGame.categories && otherGame.categories.length > 0 ? otherGame.categories - .filter(cat => cat !== '.hidden' && cat !== 'favorite' && cat !== 'Horny') + .filter(cat => cat !== '.hidden' && cat !== 'favorite') .map(cat => `${cat}`) .join('') : ''; diff --git a/templates/glassmorphism.html b/templates/glassmorphism.html index 85f9ba0..77a1ab9 100644 --- a/templates/glassmorphism.html +++ b/templates/glassmorphism.html @@ -1028,7 +1028,7 @@ : ''; const categoriesBadges = !isOthers && game.categories && game.categories.length > 0 ? game.categories - .filter(cat => cat !== '.hidden' && cat !== 'favorite' && cat !== 'Horny') + .filter(cat => cat !== '.hidden' && cat !== 'favorite') .map(cat => `${cat}`) .join('') : ''; @@ -1053,7 +1053,7 @@ const otherPercent = ((otherGame.playtime / totalPlaytime) * 100).toFixed(1); const otherCategoriesBadges = otherGame.categories && otherGame.categories.length > 0 ? otherGame.categories - .filter(cat => cat !== '.hidden' && cat !== 'favorite' && cat !== 'Horny') + .filter(cat => cat !== '.hidden' && cat !== 'favorite') .map(cat => `${cat}`) .join('') : ''; diff --git a/templates/neumorphism.html b/templates/neumorphism.html index 7b60469..7e2235d 100644 --- a/templates/neumorphism.html +++ b/templates/neumorphism.html @@ -1068,7 +1068,7 @@ : ''; const categoriesBadges = !isOthers && game.categories && game.categories.length > 0 ? game.categories - .filter(cat => cat !== '.hidden' && cat !== 'favorite' && cat !== 'Horny') + .filter(cat => cat !== '.hidden' && cat !== 'favorite') .map(cat => `${cat}`) .join('') : ''; @@ -1093,7 +1093,7 @@ const otherPercent = ((otherGame.playtime / totalPlaytime) * 100).toFixed(1); const otherCategoriesBadges = otherGame.categories && otherGame.categories.length > 0 ? otherGame.categories - .filter(cat => cat !== '.hidden' && cat !== 'favorite' && cat !== 'Horny') + .filter(cat => cat !== '.hidden' && cat !== 'favorite') .map(cat => `${cat}`) .join('') : ''; diff --git a/templates/platinum.html b/templates/platinum.html index 6aa52dc..548518b 100644 --- a/templates/platinum.html +++ b/templates/platinum.html @@ -873,7 +873,7 @@ : ''; const categoriesBadges = !isOthers && game.categories && game.categories.length > 0 ? game.categories - .filter(cat => cat !== '.hidden' && cat !== 'favorite' && cat !== 'Horny') + .filter(cat => cat !== '.hidden' && cat !== 'favorite') .map(cat => `${cat}`) .join('') : ''; @@ -898,7 +898,7 @@ const otherPercent = ((otherGame.playtime / totalPlaytime) * 100).toFixed(1); const otherCategoriesBadges = otherGame.categories && otherGame.categories.length > 0 ? otherGame.categories - .filter(cat => cat !== '.hidden' && cat !== 'favorite' && cat !== 'Horny') + .filter(cat => cat !== '.hidden' && cat !== 'favorite') .map(cat => `${cat}`) .join('') : '';