Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
1package org.bukkit;
2
3/**
4 * A list of effects that the server is able to send to players.
5 */
6public enum Effect {
7 BOW_FIRE(1002), CLICK1(1001), CLICK2(1000), DOOR_TOGGLE(1003), EXTINGUISH(1004), RECORD_PLAY(1005), SMOKE(2000), STEP_SOUND(2001);
8
9 private final int id;
10
11 Effect(int id) {
12 this.id = id;
13 }
14
15 public int getId() {
16 return this.id;
17 }
18}