Fix missed diff and other small things

Dieser Commit ist enthalten in:
Travis Watkins 2014-04-13 04:29:01 -05:00
Ursprung d82e34da59
Commit 3dcf159ec1
8 geänderte Dateien mit 17 neuen und 13 gelöschten Zeilen

Datei anzeigen

@ -135,7 +135,7 @@ public class EntityEnderDragon extends EntityInsentient implements IComplex, IMo
d2 = this.locZ + (this.bj - this.locZ) / (double) this.bg;
d3 = MathHelper.g(this.bk - (double) this.yaw);
this.yaw = (float) ((double) this.yaw + d3 / (double) this.bg);
this.pitch = (float) ((double) this.pitch + (this.bm - (double) this.pitch) / (double) this.bg);
this.pitch = (float) ((double) this.pitch + (this.bl - (double) this.pitch) / (double) this.bg);
--this.bg;
this.setPosition(d0, d1, d2);
this.b(this.yaw, this.pitch);

Datei anzeigen

@ -78,7 +78,7 @@ public abstract class EntityHuman extends EntityLiving implements ICommandListen
ChunkCoordinates chunkcoordinates = world.getSpawn();
this.setPositionRotation((double) chunkcoordinates.x + 0.5D, (double) (chunkcoordinates.y + 1), (double) chunkcoordinates.z + 0.5D, 0.0F, 0.0F);
this.az = 180.0F;
this.aZ = 180.0F;
this.maxFireTicks = 20;
}
@ -190,7 +190,7 @@ public abstract class EntityHuman extends EntityLiving implements ICommandListen
}
if (d0 < -d3) {
this.bu = this.by = this.locX;
this.bu = this.bx = this.locX;
}
if (d2 < -d3) {
@ -198,7 +198,7 @@ public abstract class EntityHuman extends EntityLiving implements ICommandListen
}
if (d1 < -d3) {
this.bv = this.bz = this.locY;
this.bv = this.by = this.locY;
}
this.bx += d0 * 0.25D;

Datei anzeigen

@ -199,7 +199,7 @@ public abstract class EntityMinecartAbstract extends Entity {
}
if (this.locY < -64.0D) {
this.G();
this.F();
}
int i;

Datei anzeigen

@ -146,7 +146,7 @@ public class EntitySlime extends EntityInsentient implements IMonster {
} else {
this.bc = false;
if (this.onGround) {
this.bd = this.bf = 0.0F;
this.bd = this.be = 0.0F;
}
}
}

Datei anzeigen

@ -341,7 +341,7 @@ public class PlayerConnection implements PacketPlayInListener {
}
this.player.i();
this.player.W = 0.0F;
this.player.V = 0.0F;
this.player.setLocation(this.y, this.z, this.q, f2, f3);
if (!this.checkMovement) {
return;

Datei anzeigen

@ -164,7 +164,7 @@ public abstract class PlayerList {
}
// CraftBukkit - Moved from above, added world
g.info(entityplayer.getName() + "[" + s + "] logged in with entity id " + entityplayer.getId() + " at ([" + entityplayer.world.worldData.getName() + "] " + entityplayer.locX + ", " + entityplayer.locY + ", " + entityplayer.locZ + ")");
g.info(entityplayer.getName() + "[" + s1 + "] logged in with entity id " + entityplayer.getId() + " at ([" + entityplayer.world.worldData.getName() + "] " + entityplayer.locX + ", " + entityplayer.locY + ", " + entityplayer.locZ + ")");
}
public void a(ScoreboardServer scoreboardserver, EntityPlayer entityplayer) { // CraftBukkit - protected -> public
@ -374,7 +374,7 @@ public abstract class PlayerList {
s = s + "\nYour ban will be removed on " + h.format(ipbanentry.getExpires());
}
// return s2;
// return s;
event.disallow(PlayerLoginEvent.Result.KICK_BANNED, s);
} else {
// return this.players.size() >= this.maxPlayers ? "The server is full!" : null;
@ -768,7 +768,7 @@ public abstract class PlayerList {
*/
if (entity.isAlive()) {
// entity.setPositionRotation(d0, entity.locY, d1, entity.yaw, entity.pitch)
// worldserver1.s().a(entity, d3, d4, d5, f);
// worldserver1.getTravelAgent().a(entity, d3, d4, d5, f);
if (portal) {
Vector velocity = entity.getBukkitEntity().getVelocity();
worldserver1.getTravelAgent().adjustExit(entity, exit, velocity);
@ -794,7 +794,7 @@ public abstract class PlayerList {
}
/* CraftBukkit start - Remove updating of lag to players -- it spams way to much on big servers.
if (this.p < this.players.size()) {
if (this.t < this.players.size()) {
EntityPlayer entityplayer = (EntityPlayer) this.players.get(this.p);
this.sendAll(new PacketPlayOutPlayerInfo(entityplayer.getName(), true, entityplayer.ping));

Datei anzeigen

@ -208,7 +208,11 @@ public class WorldNBTStorage implements IDataManager, IPlayerFileData {
// CraftBukkit start
if (entityhuman instanceof EntityPlayer) {
CraftPlayer player = (CraftPlayer) entityhuman.bukkitEntity;
player.setFirstPlayed(new File(playerDir, entityhuman.getName() + ".dat").lastModified());
// Only update first played if it is older than the one we have
long modified = new File(this.playerDir, entityhuman.getUniqueID().toString() + ".dat").lastModified();
if (modified < player.getFirstPlayed()) {
player.setFirstPlayed(modified);
}
}
// CraftBukkit end

Datei anzeigen

@ -163,7 +163,7 @@ public class CraftOfflinePlayer implements OfflinePlayer, ConfigurationSerializa
@Override
public int hashCode() {
int hash = 5;
hash = 97 * hash + (this.getUniqueId() != null ? this.getUniqueId().toString().hashCode() : 0);
hash = 97 * hash + (this.getUniqueId() != null ? this.getUniqueId().hashCode() : 0);
return hash;
}