Edit change count to default to 0 instead of -1

Why was it ever defaulted to -1?
This commit is contained in:
IronApollo 2020-05-13 17:45:11 -04:00
parent 8b1a0bbc34
commit 376bbe1bdb

View File

@ -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;