2023-04-13 01:02:31 +03:00
|
|
|
package xyz.pixelatedw.finalbeta.mixin;
|
2023-04-02 20:25:30 +03:00
|
|
|
|
|
|
|
import org.spongepowered.asm.mixin.Mixin;
|
|
|
|
|
|
|
|
import net.minecraft.client.util.ResourceDownloadThread;
|
|
|
|
|
|
|
|
@Mixin(ResourceDownloadThread.class)
|
|
|
|
public class ResourceDownloadThreadMixin {
|
2023-04-08 01:24:18 +03:00
|
|
|
|
|
|
|
private static final String RESOURCES_URL = "http://mcresources.modification-station.net/MinecraftResources/";
|
|
|
|
|
2025-04-06 13:17:44 +03:00
|
|
|
// @ModifyConstant(method = "run", constant = @Constant(stringValue = "http://s3.amazonaws.com/MinecraftResources/"), remap = false)
|
|
|
|
// private String getResourcesUrl(String def) {
|
|
|
|
// return RESOURCES_URL;
|
|
|
|
// }
|
2023-04-02 20:25:30 +03:00
|
|
|
}
|