diff --git a/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/web/WarpCorePlasmaInspectorServlet.java b/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/web/WarpCorePlasmaInspectorServlet.java index f12ebee..7fbb9a2 100644 --- a/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/web/WarpCorePlasmaInspectorServlet.java +++ b/nx01-zerofungus-server/src/main/java/love/distributedrebirth/nx01/zerofungus/server/web/WarpCorePlasmaInspectorServlet.java @@ -103,7 +103,7 @@ public class WarpCorePlasmaInspectorServlet extends HttpServlet { for (Class cls : clazzes) { AttributesImpl atts = new AttributesImpl(); atts.addAttribute("", "className", "", "", cls.getName()); - atts.addAttribute("", "classTypeName", "", "", cls.getTypeName()); + atts.addAttribute("", "classType", "", "", cls.toString().split(" ")[0]); writer.printTagStartEnd(Tag.claimType, atts); } writer.printTagEnd(tag);