Move all SysOut references to debug logging

This commit is contained in:
Nicholas Ignoffo 2018-03-01 18:23:56 -08:00
parent b1be099d67
commit 0dd0854bd9
11 changed files with 21 additions and 151 deletions

View file

@ -1,6 +1,7 @@
package WayofTime.bloodmagic.entity.ai;
import WayofTime.bloodmagic.entity.mob.EntityAspectedDemonBase;
import WayofTime.bloodmagic.util.BMLog;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.ai.EntityAIBase;
import net.minecraft.pathfinding.Path;
@ -142,7 +143,7 @@ public class EntityAIPickUpAlly extends EntityAIBase {
double d0 = this.getAttackReachSqr(potentialPickup);
if (distance <= d0 && this.attackTick <= 0 && !potentialPickup.isRiding()) {
System.out.println("Hai!");
BMLog.DEBUG.info("Hai!");
potentialPickup.startRiding(this.entity, true);
}
}