forked from xjboss/KCauldronX
Update to Forge 1343. Small fixes.
This commit is contained in:
@ -8,7 +8,7 @@
|
||||
import org.bukkit.potion.Potion;
|
||||
|
||||
/**
|
||||
@@ -79,27 +80,183 @@
|
||||
@@ -79,27 +80,188 @@
|
||||
/**
|
||||
* The flames seen on a mobspawner; a visual effect.
|
||||
*/
|
||||
@ -139,6 +139,11 @@
|
||||
+ */
|
||||
+ HAPPY_VILLAGER("happyVillager", Type.PARTICLE),
|
||||
+ /**
|
||||
+ * The smoke particles that appears on blazes, minecarts
|
||||
+ * with furnaces and fire
|
||||
+ */
|
||||
+ LARGE_SMOKE("largesmoke", Type.PARTICLE),
|
||||
+ /**
|
||||
+ * The particles generated when a tool breaks.
|
||||
+ * This particle requires a Material so that the client can select the correct texture.
|
||||
+ */
|
||||
@ -196,7 +201,7 @@
|
||||
* @deprecated Magic value
|
||||
*/
|
||||
@Deprecated
|
||||
@@ -108,6 +265,15 @@
|
||||
@@ -108,6 +270,15 @@
|
||||
}
|
||||
|
||||
/**
|
||||
@ -212,7 +217,7 @@
|
||||
* @return The type of the effect.
|
||||
*/
|
||||
public Type getType() {
|
||||
@@ -115,8 +281,7 @@
|
||||
@@ -115,8 +286,7 @@
|
||||
}
|
||||
|
||||
/**
|
||||
@ -222,7 +227,7 @@
|
||||
*/
|
||||
public Class<?> getData() {
|
||||
return this.data;
|
||||
@@ -136,12 +301,32 @@
|
||||
@@ -136,12 +306,32 @@
|
||||
|
||||
static {
|
||||
for (Effect effect : values()) {
|
||||
|
Reference in New Issue
Block a user