Added BlockIgniteEvent.

This commit is contained in:
speakeasy
2011-01-09 18:10:44 +08:00
committed by Dinner Bone
parent 184d5744f3
commit 4e8f1190af
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;