net.minecraftforge.fml.common.event.FMLServerAboutToStartEvent Java Examples
The following examples show how to use
net.minecraftforge.fml.common.event.FMLServerAboutToStartEvent.
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: EnderUtilities.java From enderutilities with GNU Lesser General Public License v3.0 | 5 votes |
@Mod.EventHandler public void onServerAboutToStartEvent(FMLServerAboutToStartEvent event) { // Register data fixers ModFixs dataFixer = proxy.getDataFixer(); TileEntityID renames = new TileEntityID(); dataFixer.registerFix(FixTypes.BLOCK_ENTITY, renames); dataFixer.registerFix(FixTypes.ITEM_INSTANCE, renames); }
Example #2
Source File: TraverseMod.java From CommunityMod with GNU Lesser General Public License v2.1 | 4 votes |
@Mod.EventHandler public void serverAboutToStart(FMLServerAboutToStartEvent event) { proxy.serverAboutToStart(event); }
Example #3
Source File: WorldRetrogen.java From simpleretrogen with GNU General Public License v3.0 | 4 votes |
@EventHandler public void serverAboutToStart(FMLServerAboutToStartEvent evt) { this.pendingWork = new MapMaker().weakKeys().makeMap(); this.completedWork = new MapMaker().weakKeys().makeMap(); this.completedWorkLocks = new MapMaker().weakKeys().makeMap(); Set<IWorldGenerator> worldGens = ObfuscationReflectionHelper.getPrivateValue(GameRegistry.class, null, "worldGenerators"); Map<IWorldGenerator,Integer> worldGenIdx = ObfuscationReflectionHelper.getPrivateValue(GameRegistry.class, null, "worldGeneratorIndex"); for (String retro : ImmutableSet.copyOf(retros.keySet())) { if (!delegates.containsKey(retro)) { FMLLog.info("Substituting worldgenerator %s with delegate", retro); for (Iterator<IWorldGenerator> iterator = worldGens.iterator(); iterator.hasNext();) { IWorldGenerator wg = iterator.next(); if (wg.getClass().getName().equals(retro)) { iterator.remove(); TargetWorldWrapper tww = new TargetWorldWrapper(); tww.delegate = wg; tww.tag = retro; worldGens.add(tww); Integer idx = worldGenIdx.remove(wg); worldGenIdx.put(tww, idx); FMLLog.info("Successfully substituted %s with delegate", retro); delegates.put(retro, tww); break; } } if (!delegates.containsKey(retro)) { FMLLog.warning("WorldRetrogen was not able to locate world generator class %s, it will be skipped, found %s", retro, worldGens); retros.remove(retro); } } } }