Merge branch 'master' of https://github.com/Uristqwerty/MinecraftForge into Uristqwerty-master

This commit is contained in:
Christian 2012-12-25 22:11:26 -05:00
commit 5fef1d5e9b

View file

@ -185,6 +185,11 @@ public class ListenerList
*/
private void buildCache()
{
if(parent != null && parent.shouldRebuild())
{
parent.buildCache();
}
ArrayList<IEventListener> ret = new ArrayList<IEventListener>();
for (EventPriority value : EventPriority.values())
{