Package cpw.mods.fml.common.gameevent.TickEvent

Examples of cpw.mods.fml.common.gameevent.TickEvent.WorldTickEvent


    }

    // rwar!
    if ( ev.type == Type.WORLD && ev.phase == Phase.END )
    {
      WorldTickEvent wte = (WorldTickEvent) ev;
      synchronized (craftingJobs)
      {
        Collection<CraftingJob> jobSet = craftingJobs.get( wte.world );
        if ( !jobSet.isEmpty() )
        {
View Full Code Here

TOP

Related Classes of cpw.mods.fml.common.gameevent.TickEvent.WorldTickEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.