Sheep color

Discussion in 'Plugin Development' started by raGan., Aug 3, 2012.

Thread Status:
Not open for further replies.
  1. Offline

    raGan.

    Hello, I need help with I assume very simple thing. I need to get color of the sheep from Entity.
     
  2. Offline

    DealerNextDoor

  3. Offline

    Malikk

    If you look at those links DealerNextDoor posted, you'll see the Sheep extends Colorable, and the method you want is getColor()

    So, you'll have to cast your entity, once you've checked that it's a Sheep
    Code:
    DyeColor color = ((Colorable) entity).getColor();
    
     
Thread Status:
Not open for further replies.

Share This Page