From fd09a35b51a2def0ba14553a535007146ae990c0 Mon Sep 17 00:00:00 2001 From: Idrees Hassan Date: Sun, 8 Mar 2026 17:25:34 -0700 Subject: [PATCH] Decrease hat chance default --- src/application.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/application.js b/src/application.js index 740b62d..4e80b29 100644 --- a/src/application.js +++ b/src/application.js @@ -3,7 +3,7 @@ import Layer, { TAG } from './animation/layer.js'; import Anim from './animation/anim.js'; import { Birb, Animations } from './birb.js'; import { Birdsong } from './sound.js'; -import { Context, ObsidianContext } from './context.js'; +import { Context } from './context.js'; import { getContext, @@ -109,7 +109,7 @@ const HOP_DELAY = 500; const HOP_CHANCE = 1 / (60 * 2.5); // Every 2.5 seconds const FOCUS_SWITCH_CHANCE = 1 / (60 * 20); // Every 20 seconds const FEATHER_CHANCE = 1 / (60 * 60 * 60 * 2); // Every 2 hours -const HAT_CHANCE = 1 / (60 * 60 * 10); // Every 10 minutes +const HAT_CHANCE = 1 / (60 * 60 * 25); // Every 25 minutes // Feathers const FEATHER_FALL_SPEED = 1;