Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions config.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ const (
)

type Config struct {
Version uint64 `json:"version" comment:"The version of the config file. This is used to ensure that the config file is compatible with the current version of Oomph.\nDO NOT MODIFY THIS VALUE."`
SpectrumAPIToken string `json:"spectrum_api_token" comment:"The Spectrum API token used to authenticate with a Spectrum API instance.\nIf you do not know what this is - don't set anything here."`
Version uint64 `json:"version" comment:"The version of the config file. This is used to ensure that the config file is compatible with the current version of Oomph.\nDO NOT MODIFY THIS VALUE."`

Prefix string `json:"prefix" comment:"The prefix to be used for Oomph."`
CommandName string `json:"command_name" comment:"The name of the command used access anti-cheat commands on the proxy. The default is 'ac' which will make the anti-cheat command '/ac'."`
Expand Down Expand Up @@ -37,8 +36,7 @@ type Config struct {
var (
Global Config
DefaultConfig = Config{
Version: ConfigVersion,
SpectrumAPIToken: "spectrum_api_token_here",
Version: ConfigVersion,

Prefix: "§l§6o§eo§bm§ep§6h§7§r »",

Expand Down