This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
Agoldfish's profile picture

Any modders out there that can help me?

Started by Agoldfish, 18 March 2014 - 04:27 PM
Agoldfish #1
Posted 18 March 2014 - 05:27 PM
I was making the mod, just getting the basic Forge needs out of the way, and this problem occurred.

Spoiler

package player.ClaudeOrFido.foodgenmod;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.SidedProxy;
@Mod(modid = MainClass.MODID, name = MainClass.NAME, version = MainClass.VERSION)


public class MainClass {
@SidedProxy(clientSide = "player.ClaudeOrFido.foodgenmod.ClientProxy", serverSide = "player.ClaudeOrFido.foodgenmod.CommonProxy") CommonProxy proxy;
public static CommonProxy proxy;


public static final String MODID = "foodgenmod";
public static final String NAME = "FoodGen";
public static final String VERSION = "1.0";

public MainClass() {
 
}

}

Any help would be great. I should also mention I was following a tutorial and that is word for word how it was.
apemanzilla #2
Posted 18 March 2014 - 05:53 PM
You have MainClass.proxy defined twice.
Edited on 18 March 2014 - 04:58 PM
Agoldfish #3
Posted 18 March 2014 - 11:40 PM
You have MainClass.proxy defined twice.
I know that much, the question is, how did the tutorial guy get away with it and not me?
Bomb Bloke #4
Posted 19 March 2014 - 12:37 AM
Perhaps he didn't, and the tutorial's broken. It's kind of hard to comment without seeing the whole thing in context.
Agoldfish #5
Posted 19 March 2014 - 03:27 AM
Figured it out.