Jump to content

laseromich

Members
  • Posts

    3
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

laseromich's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. My custom fix in cpw/Loader.java where your " for " ~~ 356 string that will protect scan minecraft.jar twice for mods int minejar=0; for (int i=0; i<minecraftSources.length; i++) { if (minecraftSources[i].isFile()) { if (minecraftSources[i].getName().equals("minecraft.jar") ){ if (minejar < 1 ) { minejar++; attemptFileLoad(minecraftSources[i], SourceType.CLASSPATH);} } else{ log.fine(String.format("Found a minecraft related file at %s, loading",minecraftSources[i].getName())); attemptFileLoad(minecraftSources[i], SourceType.CLASSPATH); } } else if (minecraftSources[i].isDirectory()) { log.fine(String.format("Found a minecraft related directory at %s, loading",minecraftSources[i].getAbsolutePath())); attemptDirLoad(minecraftSources[i],"",SourceType.CLASSPATH); } } } log.fine("Minecraft jar mods loaded successfully"); you want ask for whaat that? 1- if in minecraft.jar no mods, thay load MineForge - twice! :\ 2- if in minecraft.jar mods thay load it twice too
  2. IC2- its for exmpl But lctrees++ - need to be in jar that always work. with old versions and MUST BE FIXED ._.
  3. All mods who inside mineraft.jar (now i try only with IC2) - loaded twice! With old forge(3.1) forks fine But mods in /mods/ folder load once start.bat ForgeModLoader-0.log
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.