Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
popstarfreas committed Sep 22, 2019
1 parent 8174062 commit 2b20268
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ class MobileCompatibilityLayer implements Extension {
public postPacketHandlers: PostPacketHandler;
public listenServers: { [name: string]: ListenServer };
public clients: Set<Client> = new Set<Client>();
public realId: Map<Client, number> = new Map<Client, number>(); // used when server tells mobile client their id > 15
public realId: Map<Client, number> = new Map<Client, number>(); // used when server tells mobile client their id > MAX_CLIENT_ID

constructor() {
this.name = "Mobile Compatibility Layer";
this.version = "v1.0";
this.version = "v1.1";
this.author = "popstarfreas";
this.reloadable = false;
this.priorPacketHandlers = new PriorPacketHandler(this);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dimensions-mcl",
"version": "1.0.0",
"version": "1.1.0",
"repository": {
"type": "git",
"url": ""
Expand Down

0 comments on commit 2b20268

Please sign in to comment.