3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-06 16:12:51 +02:00

Edit change count to default to 0 instead of -1

Why was it ever defaulted to -1?
Dieser Commit ist enthalten in:
IronApollo 2020-05-13 17:45:11 -04:00
Ursprung 8b1a0bbc34
Commit 376bbe1bdb

Datei anzeigen

@ -201,7 +201,7 @@ public class EditSession extends PassthroughExtent implements AutoCloseable {
private final MutableBlockVector3 mutablebv = new MutableBlockVector3();
private int changes = -1;
private int changes = 0;
private final BlockBag blockBag;
private final Extent bypassHistory;