This commit is contained in:
kirillsaint 2023-07-03 23:22:25 +06:00
parent 35903e06ee
commit e64ba5d32c
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ public class PlayerResponse extends AbstractReply {
Players.handleAccount(this); Players.handleAccount(this);
(new Thread("setCapeType") { (new Thread("setCapeType") {
public void run() { public void run() {
Requests.post("https://api.silentclient.net/account/set_cape_type", new JSONObject().put("enabled", type).toString()); Requests.post("https://api.silentclient.net/account/set_cape_type", new JSONObject().put("type", type).toString());
Client.getInstance().updateUserInformation(); Client.getInstance().updateUserInformation();
} }
}).start(); }).start();