mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-18 10:12:53 +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 boolean lowMemoryMode = false;
|
||||||
public static IrisCompat compat;
|
public static IrisCompat compat;
|
||||||
public static FileWatcher configWatcher;
|
public static FileWatcher configWatcher;
|
||||||
public static boolean warnsmoothie = true;
|
|
||||||
|
|
||||||
@Permission
|
@Permission
|
||||||
public static PermissionIris perm;
|
public static PermissionIris perm;
|
||||||
@ -130,13 +129,6 @@ public class Iris extends VolmitPlugin
|
|||||||
return false;
|
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
|
@Override
|
||||||
public void start()
|
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("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");
|
Iris.warn(" -> Setting default stronghold position");
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
Iris.info("Got this far (3)");
|
|
||||||
StringBuilder positions = new StringBuilder();
|
StringBuilder positions = new StringBuilder();
|
||||||
for (IrisPosition pos : strongholds){
|
for (IrisPosition pos : strongholds){
|
||||||
positions.append("(").append(pos.getX()).append(",").append(pos.getY()).append(",").append(pos.getZ()).append(") ");
|
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)
|
public IrisObject(int w, int h, int d)
|
||||||
{
|
{
|
||||||
Iris.warnsmoothie();
|
|
||||||
blocks = new KMap<>();
|
blocks = new KMap<>();
|
||||||
states = new KMap<>();
|
states = new KMap<>();
|
||||||
this.w = w;
|
this.w = w;
|
||||||
|
@ -26,7 +26,6 @@ public class Section {
|
|||||||
|
|
||||||
public Section(CompoundTag sectionRoot, int dataVersion) {
|
public Section(CompoundTag sectionRoot, int dataVersion) {
|
||||||
this(sectionRoot, dataVersion, ALL_DATA);
|
this(sectionRoot, dataVersion, ALL_DATA);
|
||||||
Iris.warnsmoothie();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public Section(CompoundTag sectionRoot, int dataVersion, long loadFlags) {
|
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() {
|
public CompoundTag() {
|
||||||
super(createEmptyValue());
|
super(createEmptyValue());
|
||||||
Iris.warnsmoothie();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
x
Reference in New Issue
Block a user