Archive update v0.55.2

This commit is contained in:
Eliot Partridge
2019-10-04 10:23:00 -05:00
parent a9bbd552a3
commit 1971e2c962
25 changed files with 407 additions and 106 deletions
+8
View File
@@ -519,6 +519,14 @@ export class AdminModel {
return this.server.getTimings(server)
.catch(this.handleError);
}
setTimingEnabled(server: string, isEnabled: boolean) {
return this.server.setTimingEnabled(server, isEnabled)
.catch(this.handleError);
}
getWorldPerfStats(server: string) {
return this.server.getWorldPerfStats(server)
.catch(this.handleError);
}
teleportTo(accountId: string) {
return this.server.teleportTo(accountId)
.catch(this.handleError);