Fixed proxy naming derp.
This commit is contained in:
parent
8a6d844680
commit
51b8e73f26
2 changed files with 3 additions and 3 deletions
|
@ -34,10 +34,10 @@
|
|||
<mkdir dir="${download.dir}"/>
|
||||
|
||||
<get src="http://mcp.ocean-labs.de/files/mcp${mcp.version}.zip" dest="${download.dir}" usetimestamp="True"/>
|
||||
<get src="http://files.minecraftforge.net/minecraftforge-src-${forge.version}.zip"
|
||||
<getMethod url="http://files.minecraftforge.net/minecraftforge-src-${forge.version}.zip"
|
||||
dest="${download.dir}" usetimestamp="True">
|
||||
<header name="User-Agent" value="Ant-${ant.version}/${ant.java.version}" />
|
||||
</get>
|
||||
</getMethod>
|
||||
|
||||
<unzip dest="${mcp.dir}">
|
||||
<fileset dir="${download.dir}">
|
||||
|
|
|
@ -34,7 +34,7 @@ import net.minecraft.src.World;
|
|||
|
||||
public class CoreProxy {
|
||||
|
||||
@SidedProxy(clientSide="buildcraft.core.ClientProxyCore", serverSide="buildcraft.core.ProxyCore")
|
||||
@SidedProxy(clientSide="buildcraft.core.proxy.CoreProxyClient", serverSide="buildcraft.core.proxy.CoreProxy")
|
||||
public static CoreProxy proxy;
|
||||
|
||||
/* INSTANCES */
|
||||
|
|
Loading…
Reference in a new issue