Modified the Dwarven Might skill to better change the mining speed when mining.

This commit is contained in:
WayofTime 2016-10-05 16:06:52 -04:00
parent 16a4857dfb
commit f9b1b91c6d
4 changed files with 39 additions and 4 deletions

View file

@ -78,6 +78,11 @@ public abstract class LivingArmourUpgrade
return HashMultimap.create();
}
public double getMiningSpeedModifier(EntityPlayer player)
{
return 1;
}
public abstract void writeToNBT(NBTTagCompound tag);
public abstract void readFromNBT(NBTTagCompound tag);