Update Bukkit to Minecraft 1.4.6

By: feildmaster <admin@feildmaster.com>
This commit is contained in:
Bukkit/Spigot
2012-12-20 08:38:59 -06:00
parent e3062d10cb
commit ed7ae6c6d9
6 changed files with 73 additions and 2 deletions

View File

@@ -22,6 +22,7 @@ public enum EntityType {
WITHER_SKULL("WitherSkull", WitherSkull.class, 19),
PRIMED_TNT("PrimedTnt", TNTPrimed.class, 20),
FALLING_BLOCK("FallingSand", FallingBlock.class, 21, false),
FIREWORK("FireworksRocketEntity", Firework.class, 22, false),
MINECART("Minecart", Minecart.class, 40),
BOAT("Boat", Boat.class, 41),
CREEPER("Creeper", Creeper.class, 50),

View File

@@ -0,0 +1,5 @@
package org.bukkit.entity;
public interface Firework extends Entity {
}