ConsoleCommandSender no longer has a default constructor, use ConsoleCommandSender(server). Added entity.getServer and updated the version number of mc

This commit is contained in:
Dinnerbone 2011-02-23 11:32:19 +00:00
parent 6655b89037
commit bfca34cad4
4 changed files with 8 additions and 2 deletions

View File

@ -50,7 +50,7 @@ public class MinecraftServer implements Runnable, ICommandListener {
public List<WorldServer> worlds = new ArrayList<WorldServer>();
public CraftServer server;
public OptionSet options;
public ConsoleCommandSender console = new ConsoleCommandSender();
public ConsoleCommandSender console;
// Craftbukkit end
public MinecraftServer(OptionSet options) { // Craftbukkit - adds argument OptionSet

View File

@ -14,6 +14,7 @@ import java.util.logging.Logger;
// CraftBukkit start
import org.bukkit.Location;
import org.bukkit.command.ConsoleCommandSender;
import org.bukkit.craftbukkit.CraftServer;
import org.bukkit.craftbukkit.CraftWorld;
import org.bukkit.entity.Player;
@ -47,6 +48,7 @@ public class ServerConfigurationManager {
public ServerConfigurationManager(MinecraftServer minecraftserver) {
minecraftserver.server = new CraftServer(minecraftserver, this);
minecraftserver.console = new ConsoleCommandSender(minecraftserver.server);
server = minecraftserver.server;
// CraftBukkit end

View File

@ -30,7 +30,7 @@ import org.bukkit.event.world.WorldEvent;
public final class CraftServer implements Server {
private final String serverName = "Craftbukkit";
private final String serverVersion;
private final String protocolVersion = "1.2_01";
private final String protocolVersion = "1.3";
private final PluginManager pluginManager = new SimplePluginManager(this);
private final BukkitScheduler scheduler = new CraftScheduler(this);
private final CommandMap commandMap = new SimpleCommandMap(this);

View File

@ -173,4 +173,8 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
public String toString() {
return "CraftEntity{" + "id=" + getEntityId() + '}';
}
public CraftServer getServer() {
return server;
}
}