We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8793f36 commit 591b8f5Copy full SHA for 591b8f5
src/net/milkbowl/autosave/AutoSave.java
@@ -63,7 +63,7 @@ public void onDisable() {
63
world.setAutoSave(true);
64
} else {
65
// this should be false because canSave is really noSave
66
- ((CraftWorld) world).getHandle().canSave = false;
+ ((CraftWorld) world).getHandle().savingDisabled = false;
67
}
68
69
@@ -135,7 +135,7 @@ public void onEnable() {
135
world.setAutoSave(false);
136
137
// this should be true because canSave is really noSave
138
- ((CraftWorld) world).getHandle().canSave = true;
+ ((CraftWorld) world).getHandle().savingDisabled = true;
139
140
141
0 commit comments