Beginning Thaumcraft compat
Derp
This commit is contained in:
parent
15650bac8b
commit
abf54bf9af
7 changed files with 78 additions and 4 deletions
|
@ -1,32 +0,0 @@
|
|||
package WayofTime.bloodmagic.compat.jei;
|
||||
|
||||
import WayofTime.bloodmagic.api.livingArmour.LivingArmourHandler;
|
||||
import WayofTime.bloodmagic.compat.ICompatibility;
|
||||
import WayofTime.bloodmagic.compat.thaumcraft.LivingArmourUpgradeThaumRunicShielding;
|
||||
import WayofTime.bloodmagic.compat.thaumcraft.StatTrackerThaumRunicShielding;
|
||||
|
||||
public class CompatibilityThaumcraft implements ICompatibility
|
||||
{
|
||||
@Override
|
||||
public void loadCompatibility(InitializationPhase phase)
|
||||
{
|
||||
if (phase == InitializationPhase.POST_INIT)
|
||||
{
|
||||
LivingArmourHandler.registerStatTracker(StatTrackerThaumRunicShielding.class);
|
||||
|
||||
LivingArmourHandler.registerArmourUpgrade(new LivingArmourUpgradeThaumRunicShielding(0));
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getModId()
|
||||
{
|
||||
return "Thaumcraft";
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean enableCompat()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue