mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-03 13:36:44 +01:00
088fa6f28b
Upstream has released updates that appear to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: 5b289e69 SPIGOT-5778: Added World.getGameTime method CraftBukkit Changes: d97d91871 SPIGOT-6347: Nether Portals Default to Nether, even in Nether 8aa6a953f SPIGOT-5778: Added World.getGameTime method Spigot Changes: 73fb6094 #107: Add async catching to chunk entity add/remove
45 lines
1.5 KiB
Diff
45 lines
1.5 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: BillyGalbreath <Blake.Galbreath@GMail.com>
|
|
Date: Sun, 7 Oct 2018 00:54:15 -0500
|
|
Subject: [PATCH] Add sun related API
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/World.java b/src/main/java/org/bukkit/World.java
|
|
index de607fe0a2e864dc66d9341b233d0d8b120db1f9..ad915c2a190fa5bb50cbf88dfd99798918c75a47 100644
|
|
--- a/src/main/java/org/bukkit/World.java
|
|
+++ b/src/main/java/org/bukkit/World.java
|
|
@@ -1780,6 +1780,16 @@ public interface World extends PluginMessageRecipient, Metadatable {
|
|
*/
|
|
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
|
|
*
|
|
diff --git a/src/main/java/org/bukkit/entity/Mob.java b/src/main/java/org/bukkit/entity/Mob.java
|
|
index b132287817d35579ca5128a1ed5c242bf229771a..d726453c041a980576312b6bee96a07837f37974 100644
|
|
--- a/src/main/java/org/bukkit/entity/Mob.java
|
|
+++ b/src/main/java/org/bukkit/entity/Mob.java
|
|
@@ -16,6 +16,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
|
|
|
|
/**
|