Renamed Main to ForgeMain and added some config ui comment stuff

This commit is contained in:
coolGi
2022-06-03 17:13:28 +09:30
parent 32a5880c17
commit 8bfe624f97
10 changed files with 13 additions and 41 deletions
@@ -79,11 +79,12 @@ public class ForgeMain implements LodForgeMethodCaller
private void init(final FMLCommonSetupEvent event)
{
// make sure the dependencies are set up before the mod needs them
LodCommonMain.startup(this, !FMLLoader.getDist().isClient());
// LodCommonMain.startup(this, !FMLLoader.getDist().isClient());
LodCommonMain.startup(this);
ForgeDependencySetup.createInitialBindings();
ForgeDependencySetup.finishBinding();
LodCommonMain.initConfig();
LOGGER.info("Distant Horizons initializing...");
LOGGER.info(ModInfo.READABLE_NAME + " initializing...");
}
public ForgeMain()