geforkt von Mirrors/Paper
Update for 1.6.3
Dieser Commit ist enthalten in:
Ursprung
6903f20242
Commit
dc76d3a64a
@ -51,11 +51,6 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
||||
this.br = 0.0F;
|
||||
this.name = s;
|
||||
this.height = 0.0F;
|
||||
this.inventory.canHold(new ItemStack(Item.PAPER, 64));
|
||||
this.inventory.canHold(new ItemStack(Block.WORKBENCH, 64));
|
||||
this.inventory.canHold(new ItemStack(Item.COMPASS, 64));
|
||||
this.inventory.canHold(new ItemStack(Block.OBSIDIAN, 64));
|
||||
this.inventory.canHold(new ItemStack(Item.FLINT_AND_STEEL));
|
||||
|
||||
// CraftBukkit start
|
||||
this.displayName = this.name;
|
||||
|
@ -86,7 +86,7 @@ public class MinecraftServer implements Runnable, ICommandListener {
|
||||
System.setErr(new PrintStream(new LoggerOutputStream(log, Level.SEVERE), true));
|
||||
// CraftBukkit end
|
||||
|
||||
log.info("Starting minecraft server version Beta 1.6.2");
|
||||
log.info("Starting minecraft server version Beta 1.6.3");
|
||||
if (Runtime.getRuntime().maxMemory() / 1024L / 1024L < 512L) {
|
||||
log.warning("**** NOT ENOUGH RAM!");
|
||||
log.warning("To start the server with more ram, launch it as \"java -Xmx1024M -Xms1024M -jar minecraft_server.jar\"");
|
||||
|
@ -283,11 +283,7 @@ public class World implements IBlockAccess {
|
||||
if (this.setRawData(i, j, k, l)) {
|
||||
int i1 = this.getTypeId(i, j, k);
|
||||
|
||||
if (Block.t[i1 & 255]) {
|
||||
this.update(i, j, k, i1);
|
||||
} else {
|
||||
this.applyPhysics(i, j, k, i1);
|
||||
}
|
||||
this.update(i, j, k, i1);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -59,7 +59,7 @@ import org.bukkit.util.config.Configuration;
|
||||
public final class CraftServer implements Server {
|
||||
private final String serverName = "Craftbukkit";
|
||||
private final String serverVersion;
|
||||
private final String protocolVersion = "1.6.2";
|
||||
private final String protocolVersion = "1.6.3";
|
||||
private final PluginManager pluginManager = new SimplePluginManager(this);
|
||||
private final ServicesManager servicesManager = new SimpleServicesManager();
|
||||
private final BukkitScheduler scheduler = new CraftScheduler(this);
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren