3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-07-01 08:18:03 +02:00

fix: Properly delete ChangeSets on history clear (#1413)

Fixes #1347

Co-authored-by: Jordan <dordsor21@gmail.com>
Co-authored-by: Alex <mc.cache@web.de>
Dieser Commit ist enthalten in:
Owen1212055 2021-12-06 08:31:46 -05:00 committet von GitHub
Ursprung e0e3688361
Commit 781bfc542f
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -398,9 +398,20 @@ public class LocalSession implements TextureHolder {
* Clear history.
*/
public void clearHistory() {
history.clear();
//FAWE start
historyWriteLock.lock();
try {
// Ensure that changesets are properly removed
for (Object item : history) {
getChangeSet(item).delete();
}
history.clear();
} finally {
historyWriteLock.unlock();
}
historyNegativeIndex = 0;
save();
historySize = 0;
currentWorld = null;
//FAWE end