Added BlockIgniteEvent.

By: speakeasy <mekevin1917@gmail.com>
This commit is contained in:
Bukkit/Spigot
2011-01-09 18:10:44 +08:00
parent a27364193d
commit 5c0413fb45
2 changed files with 88 additions and 6 deletions

View File

@@ -140,6 +140,9 @@ public final class JavaPluginLoader implements PluginLoader {
case LEAVES_DECAY:
trueListener.onLeavesDecay((LeavesDecayEvent)event);
break;
case BLOCK_IGNITE:
trueListener.onBlockIgnite((BlockIgniteEvent)event);
break;
}
} else if(listener instanceof ServerListener) {
ServerListener trueListener = (ServerListener)listener;