Skip to content

Commit

Permalink
makeWritable private -> public (#163)
Browse files Browse the repository at this point in the history
Fixes a rare crash with ASJCore
  • Loading branch information
AutumnalModding authored Jul 12, 2024
1 parent 311d177 commit d1fe9ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class ObjectHolderRef {
* @reason Simple helper function
*/
@Overwrite(remap = false)
private static void makeWritable(Field f) {
public static void makeWritable(Field f) {
try {
f.setAccessible(true);
} catch (Exception e) {
Expand Down

0 comments on commit d1fe9ff

Please sign in to comment.