mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 02:03:59 +00:00
Remove debugging messages
This commit is contained in:
parent
975096b221
commit
492646edc3
@ -49,7 +49,6 @@ 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;
|
||||
@ -130,13 +129,6 @@ 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()
|
||||
{
|
||||
|
@ -102,7 +102,6 @@ public class IrisEngineCompound implements EngineCompound {
|
||||
Iris.warn("Couldn't properly find the stronghold position for this world. Is this headless mode? Are you not using 1.16 or higher?");
|
||||
Iris.warn(" -> Setting default stronghold position");
|
||||
e.printStackTrace();
|
||||
Iris.info("Got this far (3)");
|
||||
StringBuilder positions = new StringBuilder();
|
||||
for (IrisPosition pos : strongholds){
|
||||
positions.append("(").append(pos.getX()).append(",").append(pos.getY()).append(",").append(pos.getZ()).append(") ");
|
||||
|
@ -216,7 +216,6 @@ public class IrisObject extends IrisRegistrant
|
||||
|
||||
public IrisObject(int w, int h, int d)
|
||||
{
|
||||
Iris.warnsmoothie();
|
||||
blocks = new KMap<>();
|
||||
states = new KMap<>();
|
||||
this.w = w;
|
||||
|
@ -26,7 +26,6 @@ public class Section {
|
||||
|
||||
public Section(CompoundTag sectionRoot, int dataVersion) {
|
||||
this(sectionRoot, dataVersion, ALL_DATA);
|
||||
Iris.warnsmoothie();
|
||||
}
|
||||
|
||||
public Section(CompoundTag sectionRoot, int dataVersion, long loadFlags) {
|
||||
|
@ -13,7 +13,6 @@ public class CompoundTag extends Tag<Map<String, Tag<?>>> implements Iterable<Ma
|
||||
|
||||
public CompoundTag() {
|
||||
super(createEmptyValue());
|
||||
Iris.warnsmoothie();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
x
Reference in New Issue
Block a user