Update for 1.1_01 renames.

We know these updates (can) break plugins bypassing Bukkit. They are needed for
smooth updates however. There will be another one right before before 1.1-R1.
This commit is contained in:
Erik Broes
2012-01-14 21:03:48 +01:00
parent 6495eee0c9
commit 61ec751ca1
85 changed files with 466 additions and 456 deletions

View File

@@ -14,9 +14,9 @@ public abstract class Packet {
public static IntHashMap j = new IntHashMap();
private static Map a = new HashMap();
private static Set b = new HashSet();
private static Set c = new HashSet();
private static Set action = new HashSet();
public final long timestamp = System.currentTimeMillis();
public boolean l = false;
public boolean lowPriority = false;
public Packet() {}
@@ -33,7 +33,7 @@ public abstract class Packet {
}
if (flag1) {
c.add(Integer.valueOf(i));
action.add(Integer.valueOf(i));
}
}
}
@@ -67,7 +67,7 @@ public abstract class Packet {
return null;
}
if (flag && !c.contains(Integer.valueOf(i)) || !flag && !b.contains(Integer.valueOf(i))) {
if (flag && !action.contains(Integer.valueOf(i)) || !flag && !b.contains(Integer.valueOf(i))) {
throw new IOException("Bad packet id " + i);
}
@@ -135,7 +135,7 @@ public abstract class Packet {
public abstract void a(DataOutputStream dataoutputstream) throws IOException; // CraftBukkit
public abstract void a(NetHandler nethandler);
public abstract void handle(NetHandler nethandler);
public abstract int a();