Skip to content

Commit c9c3aa3

Browse files
authored
Merge pull request #2539 from planetarium/release/2.7.11
Release/2.7.11
2 parents a2e9ee2 + 8fb5a1c commit c9c3aa3

File tree

9 files changed

+6
-1
lines changed

9 files changed

+6
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "NineChronicles",
33
"productName": "Nine Chronicles",
4-
"version": "2.7.10",
4+
"version": "2.7.11",
55
"description": "Game Launcher for Nine Chronicles",
66
"author": "Planetarium <[email protected]>",
77
"license": "GPL-3.0",

src/interfaces/registry.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ export type RpcEndpoints = {
1212
"patrol-reward.gql"?: string[];
1313
"guild.rest"?: string[];
1414
"arena.rest"?: string[];
15+
"mimir.gql"?: string[];
1516
};
1617

1718
export type Planet = {
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

src/stores/planetary.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,10 @@ export default class PlanetaryStore {
113113
playerConfig["OnboardingHost"] =
114114
this.planet.rpcEndpoints["world-boss.rest"];
115115
playerConfig["ArenaServiceHost"] = this.planet.rpcEndpoints["arena.rest"];
116+
if ("mimir.gql" in this.planet.rpcEndpoints) {
117+
playerConfig["MimirServiceHost"] =
118+
this.planet.rpcEndpoints["mimir.gql"];
119+
}
116120
configStore.set("PlayerConfig", playerConfig);
117121
}
118122
}

0 commit comments

Comments
 (0)