From 4cc1ddcd185509080b4b3e15d1646567edd51c9d Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Mon, 15 Jun 2026 02:57:35 -0400 Subject: removed game speed for being broken and an antifeature anyway. added color support. --- internal/game/cmd_quit.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'internal/game/cmd_quit.go') diff --git a/internal/game/cmd_quit.go b/internal/game/cmd_quit.go index 90e7019..446305b 100644 --- a/internal/game/cmd_quit.go +++ b/internal/game/cmd_quit.go @@ -2,6 +2,7 @@ package game import ( "thirdcollapse/internal/combat" + "thirdcollapse/internal/engine" "thirdcollapse/internal/net" "thirdcollapse/internal/player" ) @@ -19,7 +20,7 @@ func (g *Game) doQuit(sess *net.Session) { g.cancelRest(p.Name) ticksLeft := 10 - id := g.Ticks.Subscribe(g.computeTicks(1), func() bool { + id := g.Ticks.Subscribe(engine.ToTicks(1), func() bool { switch ticksLeft { case 10: sess.WriteLine("You sit down to rest...") -- cgit v1.2.3