summaryrefslogtreecommitdiffstats
path: root/src/main/java
diff options
context:
space:
mode:
authorDinnerbone <dinnerbone@dinnerbone.com>2011-09-15 22:29:15 +0100
committerDinnerbone <dinnerbone@dinnerbone.com>2011-09-15 22:29:15 +0100
commit2995a08324ffcde6aebd208de2b9f2cc0c7cedfe (patch)
treecdc1566f714f71991780cb70238f059ba74ee33c /src/main/java
parent35defecc412aaa7231f4e141f93ebf362bffcd5c (diff)
downloadcraftbukkit-2995a08324ffcde6aebd208de2b9f2cc0c7cedfe.tar
craftbukkit-2995a08324ffcde6aebd208de2b9f2cc0c7cedfe.tar.gz
craftbukkit-2995a08324ffcde6aebd208de2b9f2cc0c7cedfe.tar.lz
craftbukkit-2995a08324ffcde6aebd208de2b9f2cc0c7cedfe.tar.xz
craftbukkit-2995a08324ffcde6aebd208de2b9f2cc0c7cedfe.zip
Removed some unneeded code, possibly fixed animal spawning
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/net/minecraft/server/NetLoginHandler.java4
-rw-r--r--src/main/java/net/minecraft/server/World.java10
2 files changed, 4 insertions, 10 deletions
diff --git a/src/main/java/net/minecraft/server/NetLoginHandler.java b/src/main/java/net/minecraft/server/NetLoginHandler.java
index 0b28759a..25944dd7 100644
--- a/src/main/java/net/minecraft/server/NetLoginHandler.java
+++ b/src/main/java/net/minecraft/server/NetLoginHandler.java
@@ -15,7 +15,7 @@ public class NetLoginHandler extends NetHandler {
private int f = 0;
private String g = null;
private Packet1Login h = null;
- private String i = "";
+ private String i = Long.toHexString(d.nextLong());
public NetLoginHandler(MinecraftServer minecraftserver, Socket socket, String s) {
this.server = minecraftserver;
@@ -55,7 +55,7 @@ public class NetLoginHandler extends NetHandler {
public void a(Packet2Handshake packet2handshake) {
if (this.server.onlineMode) {
- this.i = Long.toHexString(d.nextLong());
+ // this.i = Long.toHexString(d.nextLong()); // CraftBukkit
this.networkManager.queue(new Packet2Handshake(this.i));
} else {
this.networkManager.queue(new Packet2Handshake("-"));
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
index a4e39fca..4814f90d 100644
--- a/src/main/java/net/minecraft/server/World.java
+++ b/src/main/java/net/minecraft/server/World.java
@@ -96,7 +96,6 @@ public class World implements IBlockAccess {
int lastXAccessed = Integer.MIN_VALUE;
int lastZAccessed = Integer.MIN_VALUE;
final Object chunkLock = new Object();
- private List<TileEntity> tileEntitiesToUnload;
private boolean canSpawn(int x, int z) {
if (this.generator != null) {
@@ -114,15 +113,10 @@ public class World implements IBlockAccess {
return (CraftServer) Bukkit.getServer();
}
- public void markForRemoval(TileEntity tileentity) {
- tileEntitiesToUnload.add(tileentity);
- }
-
// CraftBukkit - changed signature
public World(IDataManager idatamanager, String s, WorldSettings worldsettings, WorldProvider worldprovider, ChunkGenerator gen, org.bukkit.World.Environment env) {
this.generator = gen;
this.world = new CraftWorld((WorldServer) this, gen, env);
- tileEntitiesToUnload = new ArrayList<TileEntity>();
// CraftBukkit end
this.X = this.random.nextInt(12000);
@@ -1616,7 +1610,7 @@ public class World implements IBlockAccess {
// CraftBukkit start - Only call spawner if we have players online and the world allows for mobs or animals
if ((this.allowMonsters || this.allowAnimals) && (this instanceof WorldServer && this.getServer().getHandle().players.size() > 0)) {
- SpawnerCreature.spawnEntities(this, this.allowMonsters, this.allowAnimals);
+ SpawnerCreature.spawnEntities(this, this.allowMonsters, this.allowAnimals && this.worldData.f() % 400L == 0L);
}
// CraftBukkit end
@@ -2243,7 +2237,7 @@ public class World implements IBlockAccess {
if (axisalignedbb != null && !this.containsEntity(axisalignedbb)) {
defaultReturn = false; // CraftBukkit
} else {
- if (block == Block.WATER || block == Block.STATIONARY_WATER || block == Block.LAVA || block == Block.STATIONARY_LAVA || block == Block.FIRE || block == Block.SNOW) {
+ if (block == Block.WATER || block == Block.STATIONARY_WATER || block == Block.LAVA || block == Block.STATIONARY_LAVA || block == Block.FIRE || block == Block.SNOW || block == Block.VINE) {
block = null;
}