3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-15 04:20:04 +01:00

#755: Fix NPE when calling getInventory() for virtual EnderChests

Dieser Commit ist enthalten in:
SydMontague 2020-09-27 11:47:50 +10:00 committet von md_5
Ursprung 2577f9bfbe
Commit a339310c48
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: E8E901AC7C617C11

Datei anzeigen

@ -18,7 +18,7 @@
+
+ @Override
+ public Location getLocation() {
+ return new Location(this.a.getWorld().getWorld(), this.a.getPosition().getX(), this.a.getPosition().getY(), this.a.getPosition().getZ());
+ return this.a != null ? new Location(this.a.getWorld().getWorld(), this.a.getPosition().getX(), this.a.getPosition().getY(), this.a.getPosition().getZ()) : null;
+ }
- public InventoryEnderChest() {