Package thaumic.tinkerer.common.enchantment.core.rule

Examples of thaumic.tinkerer.common.enchantment.core.rule.BasicCompatibilityRule


        for (Enchantment ench1 : Enchantment.enchantmentsList) {
          if (ench1 == null || ench == ench1)
            continue;

          if (!ench.canApplyTogether(ench1) || !ench1.canApplyTogether(ench))
            rules.put(ench.effectId, new BasicCompatibilityRule(ench1));
        }
    }

  }
View Full Code Here

TOP

Related Classes of thaumic.tinkerer.common.enchantment.core.rule.BasicCompatibilityRule

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.