Muroth's CacheDownloader fix for Non-renamed
Download to his CacheDownloader: [Only registered and activated users can see links. Click Here To Register...]
1. Find this void:
Code:
private void drawLoadingText(String text) {
2.Replace the whole void with:
Code:
private void drawLoadingText(String text) {
client.method13(35, (byte)4, text);
System.out.println(text);
}
3. Find this void:
Code:
private void drawLoadingText(int amount, String text) {
4. Replace the whole void with:
Code:
private void drawLoadingText(int amount, String text) {
client.method13(amount, (byte)4, text);
System.out.println(text);
}