Code cleanup

This commit is contained in:
LemADEC 2015-09-07 23:54:14 +02:00
parent 13b1d005bf
commit 7ee3252070
4 changed files with 4 additions and 8 deletions

View file

@ -6,7 +6,6 @@ import cpw.mods.fml.common.Optional;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.world.ChunkCoordIntPair;
import net.minecraft.world.chunk.Chunk;
import cr0s.warpdrive.WarpDrive;
import cr0s.warpdrive.api.IUpgradable;
import cr0s.warpdrive.config.WarpDriveConfig;
import cr0s.warpdrive.data.EnumUpgradeTypes;

View file

@ -33,7 +33,7 @@ public class CommandSpace extends CommandBase {
int targetDimensionId = Integer.MAX_VALUE;
EntityPlayerMP player = null;
if (sender != null && sender instanceof EntityPlayerMP) {
if (sender instanceof EntityPlayerMP) {
player = (EntityPlayerMP) sender;
}

View file

@ -131,7 +131,7 @@ public class JumpBlock {
}
} else {
WarpDrive.logger.info(" deploy failed to create new tile entity at " + x + ", " + y + ", " + z + " blockId " + block + ":" + blockMeta);
WarpDrive.logger.info("NBT data was " + ((oldnbt == null) ? "null" : oldnbt.toString()));
WarpDrive.logger.info("NBT data was " + oldnbt);
}
}
} catch (Exception exception) {

View file

@ -676,11 +676,8 @@ public class Vector3 implements Cloneable {
if (aabb.isVecInside(startingPosition)) {
if (0.0D < closestEntity || closestEntity == 0.0D) {
pickedEntity = new MovingObjectPosition(entityHit);
if (pickedEntity != null) {
pickedEntity.hitVec = hitMOP.hitVec;
closestEntity = 0.0D;
}
pickedEntity.hitVec = hitMOP.hitVec;
closestEntity = 0.0D;
}
} else {
double distance = startingPosition.distanceTo(hitMOP.hitVec);