net.minecraftforge.fml.common.event.FMLLoadCompleteEvent Java Examples

The following examples show how to use net.minecraftforge.fml.common.event.FMLLoadCompleteEvent. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ElectricBoogaloo.java    From CommunityMod with GNU Lesser General Public License v2.1 4 votes vote down vote up
@Override
public void onLoadComplete(FMLLoadCompleteEvent event) {
    String tooLang = I18n.format("tooltip.community_mod.electric.two").toLowerCase();
    twosList = tooLang.split("/");
}
 
Example #2
Source File: ProxyClient.java    From NotEnoughItems with MIT License 4 votes vote down vote up
@Override
public void loadComplete(FMLLoadCompleteEvent event) {
    NEIInitialization.bootNEI();
}
 
Example #3
Source File: NotEnoughItems.java    From NotEnoughItems with MIT License 4 votes vote down vote up
@Mod.EventHandler
public void loadComplete(FMLLoadCompleteEvent event) {
    proxy.loadComplete(event);
}
 
Example #4
Source File: Proxy.java    From NotEnoughItems with MIT License 2 votes vote down vote up
public void loadComplete(FMLLoadCompleteEvent event) {

    }