Skip to content

Commit 48a4364

Browse files
committed
Fix bad defaults for various URLs in GameServerSettings.
1 parent 831f328 commit 48a4364

1 file changed

Lines changed: 18 additions & 18 deletions

File tree

Arrowgene.Ddon.Server/Settings/GameServerSettings.cs

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1175,7 +1175,7 @@ public string UrlDomain
11751175
return TryGetSetting("UrlDomain", _UrlDomain);
11761176
}
11771177
}
1178-
private const string _UrlDomain = "http://localhost:{52099}";
1178+
private const string _UrlDomain = "http://localhost:52099";
11791179

11801180
/// <summary>
11811181
/// Various URLs used by the client.
@@ -1193,7 +1193,7 @@ public string UrlManual
11931193
return TryGetSetting("UrlManual", _UrlManual);
11941194
}
11951195
}
1196-
private const string _UrlManual = "http://localhost:{52099}/manual_nfb/";
1196+
private const string _UrlManual = "http://localhost:52099/manual_nfb/";
11971197

11981198
/// <summary>
11991199
///
@@ -1210,7 +1210,7 @@ public string UrlShopDetail
12101210
return TryGetSetting("UrlShopDetail", _UrlShopDetail);
12111211
}
12121212
}
1213-
private const string _UrlShopDetail = "http://localhost:{52099}/shop/ingame/stone/detail";
1213+
private const string _UrlShopDetail = "http://localhost:52099/shop/ingame/stone/detail";
12141214

12151215
/// <summary>
12161216
///
@@ -1227,7 +1227,7 @@ public string UrlShopCounterA
12271227
return TryGetSetting("UrlShopCounterA", _UrlShopCounterA);
12281228
}
12291229
}
1230-
private const string _UrlShopCounterA = "http://localhost:{52099}/shop/ingame/counter?";
1230+
private const string _UrlShopCounterA = "http://localhost:52099/shop/ingame/counter?";
12311231

12321232
/// <summary>
12331233
///
@@ -1244,7 +1244,7 @@ public string UrlShopAttention
12441244
return TryGetSetting("UrlShopAttention", _UrlShopAttention);
12451245
}
12461246
}
1247-
private const string _UrlShopAttention = "http://localhost:{52099}/shop/ingame/attention?";
1247+
private const string _UrlShopAttention = "http://localhost:52099/shop/ingame/attention?";
12481248

12491249
/// <summary>
12501250
///
@@ -1261,7 +1261,7 @@ public string UrlShopStoneLimit
12611261
return TryGetSetting("UrlShopStoneLimit", _UrlShopStoneLimit);
12621262
}
12631263
}
1264-
private const string _UrlShopStoneLimit = "http://localhost:{52099}/shop/ingame/stone/limit";
1264+
private const string _UrlShopStoneLimit = "http://localhost:52099/shop/ingame/stone/limit";
12651265

12661266
/// <summary>
12671267
///
@@ -1278,7 +1278,7 @@ public string UrlShopCounterB
12781278
return TryGetSetting("UrlShopCounterB", _UrlShopCounterB);
12791279
}
12801280
}
1281-
private const string _UrlShopCounterB = "http://localhost:{52099}/shop/ingame/counter?";
1281+
private const string _UrlShopCounterB = "http://localhost:52099/shop/ingame/counter?";
12821282

12831283
/// <summary>
12841284
///
@@ -1295,7 +1295,7 @@ public string UrlChargeCallback
12951295
return TryGetSetting("UrlChargeCallback", _UrlChargeCallback);
12961296
}
12971297
}
1298-
private const string _UrlChargeCallback = "http://localhost:{52099}/opening/entry/ddo/cog_callback/charge";
1298+
private const string _UrlChargeCallback = "http://localhost:52099/opening/entry/ddo/cog_callback/charge";
12991299

13001300
/// <summary>
13011301
///
@@ -1312,7 +1312,7 @@ public string UrlChargeA
13121312
return TryGetSetting("UrlChargeA", _UrlChargeA);
13131313
}
13141314
}
1315-
private const string _UrlChargeA = "http://localhost:{52099}/sp_ingame/charge/";
1315+
private const string _UrlChargeA = "http://localhost:52099/sp_ingame/charge/";
13161316

13171317
/// <summary>
13181318
///
@@ -1363,7 +1363,7 @@ public string UrlCampaignBanner
13631363
return TryGetSetting("UrlCampaignBanner", _UrlCampaignBanner);
13641364
}
13651365
}
1366-
private const string _UrlCampaignBanner = "http://localhost:{52099}/sp_ingame/campaign/bnr/bnr01.html?";
1366+
private const string _UrlCampaignBanner = "http://localhost:52099/sp_ingame/campaign/bnr/bnr01.html?";
13671367

13681368
/// <summary>
13691369
///
@@ -1380,7 +1380,7 @@ public string UrlSupportIndex
13801380
return TryGetSetting("UrlSupportIndex", _UrlSupportIndex);
13811381
}
13821382
}
1383-
private const string _UrlSupportIndex = "http://localhost:{52099}/sp_ingame/support/index.html";
1383+
private const string _UrlSupportIndex = "http://localhost:52099/sp_ingame/support/index.html";
13841384

13851385
/// <summary>
13861386
///
@@ -1397,7 +1397,7 @@ public string UrlPhotoupAuthorize
13971397
return TryGetSetting("UrlPhotoupAuthorize", _UrlPhotoupAuthorize);
13981398
}
13991399
}
1400-
private const string _UrlPhotoupAuthorize = "http://localhost:{52099}/api/photoup/authorize";
1400+
private const string _UrlPhotoupAuthorize = "http://localhost:52099/api/photoup/authorize";
14011401

14021402
/// <summary>
14031403
///
@@ -1414,7 +1414,7 @@ public string UrlApiA
14141414
return TryGetSetting("UrlApiA", _UrlApiA);
14151415
}
14161416
}
1417-
private const string _UrlApiA = "http://localhost:{52099}/link/api";
1417+
private const string _UrlApiA = "http://localhost:52099/link/api";
14181418

14191419
/// <summary>
14201420
///
@@ -1431,7 +1431,7 @@ public string UrlApiB
14311431
return TryGetSetting("UrlApiB", _UrlApiB);
14321432
}
14331433
}
1434-
private const string _UrlApiB = "http://localhost:{52099}/link/api";
1434+
private const string _UrlApiB = "http://localhost:52099/link/api";
14351435

14361436
/// <summary>
14371437
///
@@ -1448,7 +1448,7 @@ public string UrlIndex
14481448
return TryGetSetting("UrlIndex", _UrlIndex);
14491449
}
14501450
}
1451-
private const string _UrlIndex = "http://localhost:{52099}/sp_ingame/link/index.html";
1451+
private const string _UrlIndex = "http://localhost:52099/sp_ingame/link/index.html";
14521452

14531453
/// <summary>
14541454
///
@@ -1465,7 +1465,7 @@ public string UrlCampaign
14651465
return TryGetSetting("UrlCampaign", _UrlCampaign);
14661466
}
14671467
}
1468-
private const string _UrlCampaign = "http://localhost:{52099}/sp_ingame/campaign/bnr/slide.html";
1468+
private const string _UrlCampaign = "http://localhost:52099/sp_ingame/campaign/bnr/slide.html";
14691469

14701470
/// <summary>
14711471
///
@@ -1482,7 +1482,7 @@ public string UrlChargeB
14821482
return TryGetSetting("UrlChargeB", _UrlChargeB);
14831483
}
14841484
}
1485-
private const string _UrlChargeB = "http://localhost:{52099}/sp_ingame/charge/";
1485+
private const string _UrlChargeB = "http://localhost:52099/sp_ingame/charge/";
14861486

14871487
/// <summary>
14881488
///
@@ -1499,7 +1499,7 @@ public string UrlCompanionImage
14991499
return TryGetSetting("UrlCompanionImage", _UrlCompanionImage);
15001500
}
15011501
}
1502-
private const string _UrlCompanionImage = "http://localhost:{52099}/";
1502+
private const string _UrlCompanionImage = "http://localhost:52099/";
15031503

15041504
/// <summary>
15051505
/// How many pawns to consider for random sampling e.g. for clan hall pawns.

0 commit comments

Comments
 (0)