Archiviert
13
0
Dieses Repository wurde am 2024-12-25 archiviert. Du kannst Dateien ansehen und es klonen, aber nicht pushen oder Issues/Pull-Requests öffnen.
Paper-Old/Spigot-Server-Patches/0285-Easter-and-April-Fools-fall-on-the-same-day.patch
Zach Brown 594b647cce
> not even using java8 time API
Gotta get this rocketship up to speed I guess...
2018-03-31 23:30:19 -04:00

32 Zeilen
1.4 KiB
Diff

From f0db6278e491b4a845bf8199c36b1dc5ce1bf0aa Mon Sep 17 00:00:00 2001
From: Zach Brown <zach.brown@destroystokyo.com>
Date: Sat, 31 Mar 2018 22:49:05 -0400
Subject: [PATCH] Easter and April Fools fall on the same day
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
¯\_(ツ)_/¯
diff --git a/src/main/java/net/minecraft/server/EntityEgg.java b/src/main/java/net/minecraft/server/EntityEgg.java
index 08131afc..82c37b87 100644
--- a/src/main/java/net/minecraft/server/EntityEgg.java
+++ b/src/main/java/net/minecraft/server/EntityEgg.java
@@ -45,6 +45,13 @@ public class EntityEgg extends EntityProjectile {
}
EntityType hatchingType = EntityType.CHICKEN;
+ // Paper start - 2018-04-01 is easter and April fools day... come on now how can we not
+ java.time.LocalDate today = java.time.LocalDate.now();
+ if (today.getDayOfMonth() == 1 && today.getMonth() == java.time.Month.APRIL && today.getYear() == 2018) {
+ hatchingType = EntityType.RABBIT;
+ }
+ // Paper end
+
Entity shooter = this.getShooter();
if (shooter instanceof EntityPlayer) {
PlayerEggThrowEvent event = new PlayerEggThrowEvent((Player) shooter.getBukkitEntity(), (org.bukkit.entity.Egg) this.getBukkitEntity(), hatching, b0, hatchingType);
--
2.16.2