diff --git a/src/com/massivecraft/massivecore/store/Coll.java b/src/com/massivecraft/massivecore/store/Coll.java index 70d3e191..79532907 100644 --- a/src/com/massivecraft/massivecore/store/Coll.java +++ b/src/com/massivecraft/massivecore/store/Coll.java @@ -199,7 +199,7 @@ public class Coll> extends CollAbstract // And on some Colls we expect it to always be done. // However we cannot be sure, but if we expect to always do it // then we tell the collection to notify us if we failed to call Entity#changed. - protected boolean warnOnLocalAlter = false; + protected boolean warnOnLocalAlter = true; @Override public boolean isWarningOnLocalAlter() { return this.warnOnLocalAlter; } @Override public void setWarnOnLocalAlter(boolean warnOnLocalAlter) { this.warnOnLocalAlter = warnOnLocalAlter; }