diff options
| author | historia <[not public]> | 2026-06-15 02:57:35 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-06-15 02:58:50 -0400 |
| commit | 4cc1ddcd185509080b4b3e15d1646567edd51c9d (patch) | |
| tree | 2a564846ad4fd159a2d7e55451bfa9569fe8c0b8 /internal/config/config.go | |
| parent | 445c4612cc5cf2c226f85894b6ad1e2419a374e2 (diff) | |
| download | thehouseoficarus-4cc1ddcd185509080b4b3e15d1646567edd51c9d.tar.gz | |
removed game speed for being broken and an antifeature anyway. added color support.
Diffstat (limited to 'internal/config/config.go')
| -rw-r--r-- | internal/config/config.go | 4 |
1 files changed, 1 insertions, 3 deletions
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, |
