mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 07:20:24 +01:00
Add sun related API
This commit is contained in:
parent
51b4b8a059
commit
3ad277b100
2 changed files with 17 additions and 0 deletions
|
@ -1835,6 +1835,16 @@ public interface World extends RegionAccessor, WorldInfo, PluginMessageRecipient
|
|||
*/
|
||||
public void setFullTime(long time);
|
||||
|
||||
// Paper start
|
||||
|
||||
/**
|
||||
* Check if it is currently daytime in this world
|
||||
*
|
||||
* @return True if it is daytime
|
||||
*/
|
||||
public boolean isDayTime();
|
||||
// Paper end
|
||||
|
||||
/**
|
||||
* Gets the full in-game time on this world since the world generation
|
||||
*
|
||||
|
|
|
@ -20,6 +20,13 @@ public interface Mob extends LivingEntity, Lootable {
|
|||
*/
|
||||
@NotNull
|
||||
com.destroystokyo.paper.entity.Pathfinder getPathfinder();
|
||||
|
||||
/**
|
||||
* Check if this mob is exposed to daylight
|
||||
*
|
||||
* @return True if mob is exposed to daylight
|
||||
*/
|
||||
boolean isInDaylight();
|
||||
// Paper end
|
||||
/**
|
||||
* Instructs this Mob to set the specified LivingEntity as its target.
|
||||
|
|
Loading…
Reference in a new issue