Examples of SheepDyeEvent


Examples of keepcalm.mods.events.events.SheepDyeEvent

   
    return false;
  }
 
  public static boolean onSheepDye(EntitySheep sheep, int newColour, byte oldColour) {
    SheepDyeEvent ev = new SheepDyeEvent(sheep, newColour, oldColour);
    MinecraftForge.EVENT_BUS.post(ev);
   
    if (ev.isCanceled()) return true;
   
    return false;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.