PaperMC/Spigot-Server-Patches/Easter-and-April-Fools-fall-on-the-same-day.patch
Zach Brown 3229f3b8b8 > not even using java8 time API
Gotta get this rocketship up to speed I guess...
2018-03-31 23:30:19 -04:00

29 lines
No EOL
1.4 KiB
Diff

From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Zach Brown <1254957+zachbr@users.noreply.github.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
@@ -0,0 +0,0 @@ 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);
--