diff options
Diffstat (limited to 'internal/config')
| -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, |
