Removed all usages of PleaseStopUsingMe

This commit is contained in:
Nicholas Ignoffo 2018-03-17 22:30:14 -07:00
parent 77e5beb9e1
commit f535e331dd
10 changed files with 21 additions and 34 deletions

View file

@ -7,6 +7,9 @@ import net.minecraft.util.text.ITextComponent;
import net.minecraft.util.text.TextComponentString;
public class DamageSourceBloodMagic extends DamageSource {
public static final DamageSourceBloodMagic INSTANCE = new DamageSourceBloodMagic();
public DamageSourceBloodMagic() {
super("bloodMagic");

View file

@ -1,16 +0,0 @@
package WayofTime.bloodmagic.util;
import net.minecraft.util.DamageSource;
/**
* The primary API class. Includes helper methods and blacklists.
* <p>
* Some API methods can be used via IMC instead. The supported methods are:
*/
// TODO - Nuke this class
@Deprecated
public class PleaseStopUsingMe {
public static boolean loggingEnabled;
public static DamageSource damageSource = new DamageSourceBloodMagic();
}