diff --git a/public/resources/ts/stats-defer.ts b/public/resources/ts/stats-defer.ts
index 93e3967246..2c304a865f 100644
--- a/public/resources/ts/stats-defer.ts
+++ b/public/resources/ts/stats-defer.ts
@@ -153,6 +153,11 @@ export function isEnchanted(item: Item): boolean {
return true;
}
+ // enchanted golden apple
+ if (item.id === 322 && item.Damage === 1) {
+ return true;
+ }
+
//potions with actual effects (not water bottles)
if (item.id === 373 && item.Damage !== 0) {
return true;
diff --git a/views/stats.ejs b/views/stats.ejs
index 1877118fb3..f87a73a3d1 100644
--- a/views/stats.ejs
+++ b/views/stats.ejs
@@ -93,6 +93,11 @@ function isEnchanted(item) {
return true;
}
+ // enchanted golden apple
+ if (item.id === 322 && item.Damage === 1) {
+ return true;
+ }
+
// potions potions with actual effects (not water bottles)
if (item.id === 373 && item.Damage !== 0) {
return true;
@@ -119,7 +124,7 @@ function itemIcon(item, classes) { %>
icon-<%= item.id %>_<%= item.Damage %>
">
-<% }
+<% }
function jerriefy(rank) {
if (extra.isFoolsDay) {
@@ -380,7 +385,7 @@ const metaDescription = getMetaDescription()
<% for (let error in calculated.errors) { %>
<% console.log(calculated.errors[error]) %>
<%- calculated.errors[error] %>
-
+
<% } %>
@@ -438,7 +443,7 @@ const metaDescription = getMetaDescription()
<% for (let profile_id in calculated.profiles) {
const _profile = calculated.profiles[profile_id]; %>