Normalize patches
This commit is contained in:
@ -17,11 +17,11 @@
|
||||
+ if (!"false".equals(System.getProperty("kcauldron.fastcraft.disable", "true"))) {
|
||||
+ java.util.Iterator<ModContainer> iterator = modList.iterator();
|
||||
+ while(iterator.hasNext()) {
|
||||
+ ModContainer container = iterator.next();
|
||||
+ if ("FastCraft".equals(container.getModId())) {
|
||||
+ FMLLog.log(Level.WARN, "Found FastCraft mod, removing it...");
|
||||
+ iterator.remove();
|
||||
+ }
|
||||
+ ModContainer container = iterator.next();
|
||||
+ if ("FastCraft".equals(container.getModId())) {
|
||||
+ FMLLog.log(Level.WARN, "Found FastCraft mod, removing it...");
|
||||
+ iterator.remove();
|
||||
+ }
|
||||
+ }
|
||||
+ }
|
||||
+
|
||||
|
@ -75,8 +75,8 @@
|
||||
if (cascadedTweaker != null)
|
||||
{
|
||||
+ if ("fastcraft.Tweaker".equals(cascadedTweaker) && !"false".equals(System.getProperty("kcauldron.fastcraft.disable", "true"))) {
|
||||
+ FMLRelaunchLog.info("Found FastCraft tweaker, skipping...");
|
||||
+ continue;
|
||||
+ FMLRelaunchLog.info("Found FastCraft tweaker, skipping...");
|
||||
+ continue;
|
||||
+ }
|
||||
FMLRelaunchLog.info("Loading tweaker %s from %s", cascadedTweaker, coreMod.getName());
|
||||
Integer sortOrder = Ints.tryParse(Strings.nullToEmpty(mfAttributes.getValue("TweakOrder")));
|
||||
|
Reference in New Issue
Block a user