summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--earthporn.go1
-rw-r--r--main.go1
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
}
diff --git a/main.go b/main.go
index 27a5ab6..e37670f 100644
--- a/main.go
+++ b/main.go
@@ -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() {