From d42f1854f55468a6cff74dbedeb8eb861857026f Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Mon, 9 Mar 2026 10:05:51 -0700 Subject: [PATCH] empathy: Fix typo leading to clearly broken code This identifier was simply misspelled. Oops! --- empathy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/empathy.js b/empathy.js index cfc80bd..a8ce258 100644 --- a/empathy.js +++ b/empathy.js @@ -247,7 +247,7 @@ class Empathy extends Game { if (this.answering_idle_timer) { clearTimeout(this.answering_idle_timer); - this.ansering_idle_timer = 0; + this.answering_idle_timer = 0; } if (! this.state.answering_idle) { this.answering_idle_timer = setTimeout(() => { -- 2.45.2