Print host instead of ip address if host is specified. Also embed specified host into bmbp files. (#57)

This commit is contained in:
CaitSith2
2020-04-02 10:40:38 -07:00
committed by GitHub
parent 412e30fabc
commit 959917bb13
2 changed files with 3 additions and 2 deletions

View File

@@ -670,7 +670,7 @@ async def main(args: argparse.Namespace):
logging.error('Failed to read multiworld data (%s)' % e)
return
ip = Utils.get_public_ipv4()
ip = args.host if args.host else Utils.get_public_ipv4()