Update x3

This commit is contained in:
Michael Wain 2024-07-28 17:12:01 +03:00
parent 10ac29ba47
commit 1dbdfe5af0

View File

@ -15,10 +15,9 @@ public class SendSet extends Thread {
@Override @Override
public void run() { public void run() {
int i = 0; while(true) {
while(i < 10) {
try { try {
Thread.sleep(2500); Thread.sleep(4000);
if (isCape) { if (isCape) {
((ForceDownloadHandler) EntityRenderDispatcher.instance.renderEngine).offlineSkinChanger$forceLoadDownloadableTexture("offlineCapeLocal:" + this.username, null, null); ((ForceDownloadHandler) EntityRenderDispatcher.instance.renderEngine).offlineSkinChanger$forceLoadDownloadableTexture("offlineCapeLocal:" + this.username, null, null);
return; return;
@ -26,8 +25,7 @@ public class SendSet extends Thread {
((ForceDownloadHandler) EntityRenderDispatcher.instance.renderEngine).offlineSkinChanger$forceLoadDownloadableTexture("offlineSkinLocal:" + this.username, null, PlayerSkinParser.instance); ((ForceDownloadHandler) EntityRenderDispatcher.instance.renderEngine).offlineSkinChanger$forceLoadDownloadableTexture("offlineSkinLocal:" + this.username, null, PlayerSkinParser.instance);
return; return;
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); //e.printStackTrace();
i++;
} }
} }
} }