From 1fab99abbf5e4e71b17c632d81ccefbfb6aecfd3 Mon Sep 17 00:00:00 2001 From: ZXMushroom63 Date: Fri, 30 May 2025 17:50:45 +0800 Subject: [PATCH] renderitem method grabber patch --- core/postinit.js | 1 + 1 file changed, 1 insertion(+) diff --git a/core/postinit.js b/core/postinit.js index f2116df..c19747e 100644 --- a/core/postinit.js +++ b/core/postinit.js @@ -220,6 +220,7 @@ const modapi_postinit = "(" + (() => { ModAPI.util.getMethodFromPackage = function (classId, methodName) { if (ModAPI.is_1_12) { classId = classId.replace(".eaglercraft.v1_8", ".eaglercraft"); //why peyton why must you do this. you couldve changed it to v1_12 too, that would've worked + classId = classId.replace(".entity.RenderItem", ".RenderItem"); } var name = ""; var classStuff = classId.split(".");