-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a05e69b
commit 6ea73e7
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: Jake Potrebic <[email protected]> | ||
Date: Wed, 6 Jul 2022 14:59:38 -0700 | ||
Subject: [PATCH] Fix Bee flower NPE | ||
|
||
|
||
diff --git a/src/main/java/net/minecraft/world/entity/animal/Bee.java b/src/main/java/net/minecraft/world/entity/animal/Bee.java | ||
index bd048cc30046f19f9eee89c6ba45d0816a160e67..e5de2c1d11e5de88420caba35bf75c8bbd799db5 100644 | ||
--- a/src/main/java/net/minecraft/world/entity/animal/Bee.java | ||
+++ b/src/main/java/net/minecraft/world/entity/animal/Bee.java | ||
@@ -802,7 +802,7 @@ public class Bee extends Animal implements NeutralMob, FlyingAnimal { | ||
++this.pollinatingTicks; | ||
if (this.pollinatingTicks > 600) { | ||
Bee.this.savedFlowerPos = null; | ||
- } else { | ||
+ } else if (Bee.this.savedFlowerPos != null) { // Paper - add null check since API can manipulate this | ||
Vec3 vec3d = Vec3.atBottomCenterOf(Bee.this.savedFlowerPos).add(0.0D, 0.6000000238418579D, 0.0D); | ||
|
||
if (vec3d.distanceTo(Bee.this.position()) > 1.0D) { |