summaryrefslogtreecommitdiff
path: root/src/renderer/gameserver/data.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/renderer/gameserver/data.ts')
-rw-r--r--src/renderer/gameserver/data.ts10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/renderer/gameserver/data.ts b/src/renderer/gameserver/data.ts
index b994215..a55b745 100644
--- a/src/renderer/gameserver/data.ts
+++ b/src/renderer/gameserver/data.ts
@@ -3,6 +3,7 @@ import {socialLink} from './server';
import GameServer from './server';
import GameServerProfile from './profile';
import { NewsType } from './news';
+import { OnlineListParser } from './onlineCount';
const TMW2 = new GameServer(
@@ -29,7 +30,8 @@ const TMW2 = new GameServer(
new socialLink("fab fa-twitter","Twitter","https://twitter.com/TheManaWorld2"),
new socialLink("fab fa-gitlab","Gitlab","https://gitlab.com/TMW2"),
],
- "https://tmw2.org/legal"
+ "https://tmw2.org/legal",
+ {parser:OnlineListParser.EXAMPLE_DATA,url:"example"}
);
const Evol = new GameServer(
@@ -48,7 +50,8 @@ const Evol = new GameServer(
[
new socialLink("fas fa-home","Website","https://evolonline.org/"),
],
- "http://wiki.evolonline.org/rules/gamerules"
+ "http://wiki.evolonline.org/rules/gamerules",
+ null
);
const TMW = new GameServer(
@@ -68,7 +71,8 @@ const TMW = new GameServer(
new socialLink("fas fa-home","Website","https://www.themanaworld.org/"),
new socialLink("fas fa-users","Forum","https://forums.themanaworld.org/"),
],
- "https://wiki.themanaworld.org/index.php/The_Mana_World:Terms_and_Conditions"
+ "https://wiki.themanaworld.org/index.php/The_Mana_World:Terms_and_Conditions",
+ {parser:OnlineListParser.TMW, url:"https://server.themanaworld.org/"}
);
export const GameServers = [