File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -78,8 +78,8 @@ The server can be configured using the `config.json` file. The following are the
7878{
7979 " host" : " 127.0.0.1" , // ENet Host
8080 " port" : " 17091" , // ENet Port
81- " serverCdn" : " " , // Growtopia CDN to handle missing files
82- " loginUrl" : " gtlogin-backend.vercel.app " , // URI for client login
81+ " serverCdn" : " default " , // Growtopia CDN to handle missing files ( default: 0098/0181220253/ - 5.39 )
82+ " loginUrl" : " default " , // URI for client login ( default: gt-login.vercel.app - 31-12-2025 update )
8383 " isLogging" : false,
8484 " rateLimit" : 300,
8585 " rateLimitDuration" : 5,
Original file line number Diff line number Diff line change @@ -516,7 +516,7 @@ func Initialize() *fiber.App {
516516
517517 cdnUrl := config .ServerCdn
518518 if cdnUrl == "default" {
519- cdnUrl = "0098/5858486/"
519+ cdnUrl = "0098/0181220253/" // @note 31-12-2025 update ( 5.39 )
520520 }
521521
522522 app .Use (func (c * fiber.Ctx ) error {
@@ -560,7 +560,7 @@ func Initialize() *fiber.App {
560560
561561 loginUrl := config .LoginUrl
562562 if loginUrl == "default" {
563- loginUrl = "login-web-sigma .vercel.app"
563+ loginUrl = "gt-login .vercel.app" // @note 31-12-2025 update
564564 }
565565 content := fmt .Sprintf (
566566 "server|%s\n " +
You can’t perform that action at this time.
0 commit comments