From 2b5d8f595f96a2864899f4c7e28bc06fa52d2603 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Sat, 18 Jul 2026 04:44:50 -0400 Subject: feat: expose all colors in config.yaml for easier theming --- internal/game/sys_labor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/game/sys_labor.go') diff --git a/internal/game/sys_labor.go b/internal/game/sys_labor.go index 6004b75..f0e1d01 100644 --- a/internal/game/sys_labor.go +++ b/internal/game/sys_labor.go @@ -22,7 +22,7 @@ func taskWorkVerb(mob *world.MobInstance) string { // inverse of hpBar. It is used for task worksites whose internal HP drains to 0 // to complete the work (progress = MaxHP - HP). func (g *Game) progressBar(sess *net.Session, progress, max int) string { - return g.renderBar(sess, progress, max, 67) + return g.renderBarGeneric(sess, progress, max, "task_bar") } // writeTaskProgress prints the per-tick progress line for a task worksite, -- cgit v1.2.3