From 585e4ae70849f85c6cd11592b5a3fbbbb794ab61 Mon Sep 17 00:00:00 2001 From: Justin T <37750742+jtieri@users.noreply.github.com> Date: Sat, 30 Nov 2019 00:05:42 -0600 Subject: [PATCH] update config updated config to align with changes to the way the server struct was designed --- habbgo/utils/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/habbgo/utils/config.go b/habbgo/utils/config.go index 9b95fcb..399383b 100644 --- a/habbgo/utils/config.go +++ b/habbgo/utils/config.go @@ -9,7 +9,7 @@ import ( type Config struct { Server struct { Host string `yaml:"host"` - Port uint16 `yaml:"port"` + Port int16 `yaml:"port"` } Database struct { }