You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.9 KiB
72 lines
2.9 KiB
--- ../src-base/minecraft/org/bukkit/World.java |
|
+++ ../src-work/minecraft/org/bukkit/World.java |
|
@@ -1155,6 +1155,56 @@ |
|
*/ |
|
public boolean isGameRule(String rule); |
|
|
|
+ // Spigot start |
|
+ public class Spigot |
|
+ { |
|
+ |
|
+ /** |
|
+ * Plays an effect to all players within a default radius around a given |
|
+ * location. |
|
+ * |
|
+ * @param location the {@link Location} around which players must be to |
|
+ * see the effect |
|
+ * @param effect the {@link Effect} |
|
+ * @throws IllegalArgumentException if the location or effect is null. |
|
+ * It also throws when the effect requires a material or a material data |
|
+ */ |
|
+ public void playEffect(Location location, Effect effect) |
|
+ { |
|
+ throw new UnsupportedOperationException( "Not supported yet." ); |
|
+ } |
|
+ |
|
+ /** |
|
+ * Plays an effect to all players within a default radius around a given |
|
+ * location. The effect will use the provided material (and material |
|
+ * data if required). The particle's position on the client will be the |
|
+ * given location, adjusted on each axis by a normal distribution with |
|
+ * mean 0 and standard deviation given in the offset parameters, each |
|
+ * particle has independently calculated offsets. The effect will have |
|
+ * the given speed and particle count if the effect is a particle. Some |
|
+ * effect will create multiple particles. |
|
+ * |
|
+ * @param location the {@link Location} around which players must be to |
|
+ * see the effect |
|
+ * @param effect effect the {@link Effect} |
|
+ * @param id the item/block/data id for the effect |
|
+ * @param data the data value of the block/item for the effect |
|
+ * @param offsetX the amount to be randomly offset by in the X axis |
|
+ * @param offsetY the amount to be randomly offset by in the Y axis |
|
+ * @param offsetZ the amount to be randomly offset by in the Z axis |
|
+ * @param speed the speed of the particles |
|
+ * @param particleCount the number of particles |
|
+ * @param radius the radius around the location |
|
+ */ |
|
+ public void playEffect(Location location, Effect effect, int id, int data, float offsetX, float offsetY, float offsetZ, float speed, int particleCount, int radius) |
|
+ { |
|
+ throw new UnsupportedOperationException( "Not supported yet." ); |
|
+ } |
|
+ } |
|
+ |
|
+ Spigot spigot(); |
|
+ // Spigot end |
|
+ |
|
/** |
|
* Represents various map environment types that a world may be |
|
*/ |
|
@@ -1203,6 +1253,12 @@ |
|
return lookup.get(id); |
|
} |
|
|
|
+ // Cauldron start - allow forge to register environments |
|
+ public static void registerEnvironment(Environment env) { |
|
+ lookup.put(env.getId(),env); |
|
+ } |
|
+ // Cauldron end |
|
+ |
|
static { |
|
for (Environment env : values()) { |
|
lookup.put(env.getId(), env);
|
|
|