From 11ccd0fa7683b423093bc6232da06b74e003b545 Mon Sep 17 00:00:00 2001 From: Evorp <3vorpgaming@gmail.com> Date: Mon, 29 Apr 2024 07:53:27 -0700 Subject: [PATCH] fix error on teapot page --- coffee.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coffee.html b/coffee.html index fab6f39d..6c89d6c3 100644 --- a/coffee.html +++ b/coffee.html @@ -67,7 +67,7 @@

I'm a teapot

}) let r = Math.random() - let id = ids.find((e) => r <= e[1]).shift() || ids[0][0] + let id = (ids.filter(e => r <= e[1]).shift() || ids[0])[0] let img = document.getElementById('bucket') img.src = `https://api.faithfulpack.net/v2/textures/${id}/url/faithful_64x/latest`