Skip to content

Commit

Permalink
Change binding to force integer only
Browse files Browse the repository at this point in the history
  • Loading branch information
SineVector241 committed Jul 10, 2023
1 parent cea49b5 commit c9585e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VoiceCraft.Addon.BP/scripts/Network.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ class BindingPacket {
this.Type = 1;
this.LoginKey = "";
this.PlayerId = "";
this.PlayerKey = "";
this.PlayerKey = 0;
this.Gamertag = "";
}
}
Expand Down
2 changes: 1 addition & 1 deletion VoiceCraft.Addon.BP/scripts/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ CommandSystem.RegisterCommand(
Network.RequestBinding(params.Key, params.source);
},
{
Key: "string",
Key: "integer",
}
);

Expand Down

0 comments on commit c9585e5

Please sign in to comment.