diff --git a/configs/geoip/GeoIP.dat b/configs/geoip/GeoIP.dat new file mode 100644 index 00000000..0531b57c Binary files /dev/null and b/configs/geoip/GeoIP.dat differ diff --git a/extensions/geoip/GeoIP.dat b/extensions/geoip/GeoIP.dat deleted file mode 100644 index 397d489f..00000000 Binary files a/extensions/geoip/GeoIP.dat and /dev/null differ diff --git a/tools/builder/PkgCore.cs b/tools/builder/PkgCore.cs index 1ef0fb75..d73aee80 100644 --- a/tools/builder/PkgCore.cs +++ b/tools/builder/PkgCore.cs @@ -29,18 +29,19 @@ namespace builder */ public override string [] GetFolders() { - string [] folders = new string[10]; + string [] folders = new string[11]; folders[0] = "bin"; folders[1] = "plugins/disabled"; folders[2] = "configs/gamedata"; - folders[3] = "translations"; - folders[4] = "logs"; - folders[5] = "extensions"; - folders[6] = "scripting/include"; + folders[3] = "configs/geoip"; + folders[4] = "translations"; + folders[5] = "logs"; + folders[6] = "extensions"; folders[7] = "data"; - folders[8] = "scripting/admin-flatfile"; - folders[9] = "scripting/testsuite"; + folders[8] = "scripting/include"; + folders[9] = "scripting/admin-flatfile"; + folders[10] = "scripting/testsuite"; return folders; } @@ -59,6 +60,7 @@ namespace builder { builder.CopyFolder(this, "configs", "configs", null); builder.CopyFolder(this, "configs/gamedata", "configs/gamedata", null); + builder.CopyFolder(this, "configs/geoip", "configs/geoip", null); string [] plugin_omits = new string[1]; plugin_omits[0] = "spcomp.exe";