public class PlayerStartFishingEvent extends PlayerEvent implements Cancellable
Constructor and Description |
---|
PlayerStartFishingEvent(Player player,
Vector3f fishingPosition,
int waterdepth,
byte watertype,
boolean hasBait,
int waitTime,
short catchItemID) |
Modifier and Type | Method and Description |
---|---|
short |
getCatchItem() |
Vector3f |
getFishingPosition()
Gets the fishing position, or more precisely, the bobber position.
|
int |
getWaitTime()
Gets the time (in seconds) the player has to wait until a fish bites.
|
int |
getWaterDepth()
Gets the current water depth.
|
byte |
getWaterID()
Gets the water ID, i.e. salt water, fresh water etc.
|
boolean |
hasBait()
Gets whether or not the player has a bait in his inventory (which will be
used in this case).
|
boolean |
isCancelled()
Determines if the event is cancelled.
|
void |
setCancelled(boolean cancel)
Cancels this event.
|
void |
setCatchItem(short id) |
void |
setWaitTime(int seconds)
Changes the wait time, i.e. the duration until a fish bites.
|
getPlayer
public Vector3f getFishingPosition()
public int getWaitTime()
public void setWaitTime(int seconds)
seconds
- the new wait time, in seconds.public boolean hasBait()
public int getWaterDepth()
public byte getWaterID()
public short getCatchItem()
public void setCatchItem(short id)
public boolean isCancelled()
Cancellable
isCancelled
in interface Cancellable
public void setCancelled(boolean cancel)
Cancellable
setCancelled
in interface Cancellable
cancel
- set to true if you want to cancel this event.