aboutsummaryrefslogtreecommitdiffhomepage
path: root/Spigot-API-Patches/0185-Name-the-specific-custom-world-gen-plugin-class-that.patch
blob: fa3083726c0a36e2e1e90c63d13da38fd78cc357 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
From 33d30a4d9fb9124f46d6bac21f5f8d6f7fbb2ff7 Mon Sep 17 00:00:00 2001
From: Zach Brown <zach@zachbr.io>
Date: Wed, 2 Oct 2019 21:24:28 -0500
Subject: [PATCH] Name the specific custom world gen plugin class that throws a
 UOE


diff --git a/src/main/java/org/bukkit/generator/ChunkGenerator.java b/src/main/java/org/bukkit/generator/ChunkGenerator.java
index 9a18a05b..ccac5710 100644
--- a/src/main/java/org/bukkit/generator/ChunkGenerator.java
+++ b/src/main/java/org/bukkit/generator/ChunkGenerator.java
@@ -76,7 +76,10 @@ public abstract class ChunkGenerator {
      */
     @NotNull
     public ChunkData generateChunkData(@NotNull World world, @NotNull Random random, int x, int z, @NotNull BiomeGrid biome) {
-        throw new UnsupportedOperationException("Custom generator is missing required method generateChunkData");
+        // Paper start - More helpful custom chunk gen exceptions
+        final String generatorClass = world.getGenerator() != null ? world.getGenerator().getClass().getName() : "null";
+        throw new UnsupportedOperationException("Custom generator is missing required method generateChunkData: " + generatorClass);
+        // Paper end
     }
 
     /**
-- 
2.23.0