diff options
-rw-r--r-- | earthporn.go | 1 | ||||
-rw-r--r-- | main.go | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/earthporn.go b/earthporn.go index ad7576c..29ff208 100644 --- a/earthporn.go +++ b/earthporn.go @@ -122,6 +122,7 @@ func setMaxdimCmd(params []string) error { if err != nil { return fmt.Errorf("1st parameter of set-maxdim could not be parsed as a number: %s", err) } + maxdim = int(newmaxdim) return nil } @@ -97,6 +97,7 @@ func initCmds() { RegisterCommand("add-link", addLinkCmd) RegisterCommand("set-earthporn-savepath", setSavepathCmd) RegisterCommand("set-weather-place", setPlaceCmd) + RegisterCommand("set-maxdim", setMaxdimCmd) } func runConf() { |