Added SnowFormEvent. Thanks aPunch!

By: EvilSeph <evilseph@unaligned.org>
This commit is contained in:
Bukkit/Spigot
2011-05-02 01:21:47 -04:00
parent 4baa59e20f
commit 2fc8673c04
4 changed files with 97 additions and 0 deletions

View File

@@ -400,6 +400,12 @@ public final class JavaPluginLoader implements PluginLoader {
((BlockListener) listener).onBlockBreak((BlockBreakEvent) event);
}
};
case SNOW_FORM:
return new EventExecutor() {
public void execute(Listener listener, Event event) {
((BlockListener) listener).onSnowForm((SnowFormEvent) event);
}
};
// Server Events
case PLUGIN_ENABLE: