From 8efff1a057588cfa3b8c2b2a60f3bb82627c39d1 Mon Sep 17 00:00:00 2001 From: Matt Walsh Date: Mon, 12 Dec 2022 10:48:54 -0600 Subject: [PATCH] fix alamanc graphics --- server/scripts/modules/almanac.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/scripts/modules/almanac.mjs b/server/scripts/modules/almanac.mjs index 8366908..61e8bb1 100644 --- a/server/scripts/modules/almanac.mjs +++ b/server/scripts/modules/almanac.mjs @@ -133,7 +133,7 @@ class Almanac extends WeatherDisplay { fill.date = date; fill.type = MoonPhase.phase; - fill.icon = { type: 'img', src: imageName(MoonPhase.Phase) }; + fill.icon = { type: 'img', src: imageName(MoonPhase.phase) }; return this.fillTemplate('day', fill); });