Skip to content

Commit

Permalink
Remove NEI Compat in this version.
Browse files Browse the repository at this point in the history
  • Loading branch information
thecatcore committed Aug 21, 2023
1 parent cf0c617 commit bb61298
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 60 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,6 @@ protected String getCommonSuperClass(String type1, String type2) {
try {
return super.getCommonSuperClass(type1, type2);
} catch (TypeNotPresentException e) {
if ("net/minecraft/class_1071".equals(type1) && "net/minecraft/class_987".equals(type2)) {
return "java/lang/Object";
}

if ("net/minecraft/class_987".equals(type1) && "java/lang/Object".equals(type2)) {
return type2;
}

System.out.println("Common of: " + type1 + " " + type2);
e.printStackTrace();
return "java/lang/Object";
Expand Down

This file was deleted.

0 comments on commit bb61298

Please sign in to comment.