LavaBoat

Discussion in 'Plugin Development' started by KillerSmurf, Jul 15, 2011.

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

    KillerSmurf

    Someone requested a plugin where boats can go in lava...this is what i have so far.
    Could someone tell me what else i would need to do.
    Source + documentation
     
  2. Offline

    Shamebot

    Code:
    boolean isBoat = event.getEntity()instanceof Boat ? true : false;
    if (isBoat == true) {...
    That's weird code, you simply can do:
    Code:
    boolean isBoat = event.getEntity() instanceof Boat;
    if (isBoat) {...
     
Thread Status:
Not open for further replies.

Share This Page