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/config/config.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'internal/config') diff --git a/internal/config/config.go b/internal/config/config.go index a86689e..5c0a4b0 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -14,8 +14,7 @@ type Config struct { } type GameConfig struct { - TickLength int `yaml:"tick_length"` - GameSpeed float64 `yaml:"game_speed"` + TickLength int `yaml:"tick_length"` } type TelnetConfig struct { @@ -39,7 +38,6 @@ func Default() *Config { return &Config{ Game: GameConfig{ TickLength: 600, - GameSpeed: 1.0, }, Telnet: TelnetConfig{ Enabled: true, -- cgit v1.2.3