This commit is contained in:
Chris Rice 2023-06-28 15:18:23 -07:00
parent f11aedb948
commit 9d072ea247
2 changed files with 3 additions and 2 deletions

View File

@ -70,6 +70,7 @@ Tile38 can be compiled and used on Linux, OSX, Windows, FreeBSD, and probably ot
To build everything simply: To build everything simply:
``` ```
$ git tag <major>.<minor>.<fix>
$ make $ make
``` ```

View File

@ -234,10 +234,10 @@ func (config *Config) write(writeProperties bool) {
} }
} }
if config._announceIPP != "" { if config._announceIPP != "" {
m[AutoGC] = config._announceIPP m[AnnounceIP] = config._announceIPP
} }
if config._announcePortP != "" { if config._announcePortP != "" {
m[AutoGC] = config._announcePortP m[AnnouncePort] = config._announcePortP
} }
data, err := json.MarshalIndent(m, "", "\t") data, err := json.MarshalIndent(m, "", "\t")
if err != nil { if err != nil {