Improved profiling messages.

This commit is contained in:
sk89q
2011-01-31 23:51:55 -08:00
parent 66b4735d62
commit 78c78fee1f
4 changed files with 30 additions and 2 deletions

View File

@@ -2159,4 +2159,13 @@ public class EditSession {
public LocalWorld getWorld() {
return world;
}
/**
* Get the number of blocks changed, including repeated block changes.
*
* @return
*/
public int getBlockChangeCount() {
return original.size();
}
}