问题貌似在preInit阶段,先附上log的2段说明:
[Client thread/ERROR] [FML]: An error occured trying to load a proxy into {serverSide=Frozen_Phoenix.minecraftmods.client.CommonProxy, clientSide=Frozen_Phoenix.minecraftmods.common.ClientProxy}.Frozen_Phoenix.minecraftmods.Powered_Armor
[Client thread/ERROR] [FML]: Fatal errors were detected during the transition from CONSTRUCTING to PREINITIALIZATION. Loading cannot continue
我的mod目前就包括1个自定义物品,1个自定义方块,这是我的服务端代码,求教这里代码应该怎么写。。。: public class CommonProxy { public void preInit(FMLPreInitializationEvent event) { new ConfigLoader(event); new CreativeTabsLoader(event); new ItemLoader(event); new BlockLoader(event); }
public void init(FMLInitializationEvent event) {
}
public void postInit(FMLPostInitializationEvent event) {
} } 另附log完整版。。。
|