9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-25 01:59:15 +00:00

Warn for smoothie's illegal reflective access

This commit is contained in:
CocoTheOwner
2021-03-09 15:20:55 +01:00
parent 41d1714d28
commit 343ae99b54
4 changed files with 13 additions and 0 deletions

View File

@@ -49,6 +49,7 @@ public class Iris extends VolmitPlugin
public static boolean lowMemoryMode = false;
public static IrisCompat compat;
public static FileWatcher configWatcher;
public static boolean warnsmoothie = true;
@Permission
public static PermissionIris perm;
@@ -129,6 +130,13 @@ public class Iris extends VolmitPlugin
return false;
}
public static void warnsmoothie(){
if (warnsmoothie){
warn("The smoothieMap 'illegal reflective access operation' is required and can be safely ignored");
warnsmoothie = false;
}
}
@Override
public void start()
{