Fix /copy cut always showing 'copied 0 blocks'.

This commit is contained in:
UnknownShadow200 2016-08-03 23:14:42 +10:00
parent 6f27cdc5fb
commit e2c6a6212a

View File

@ -51,7 +51,7 @@ namespace MCGalaxy.Drawing.Ops {
return false;
}
long affected = 0;
long affected = checkLimit ? 0L : op.GetBlocksAffected(op.Level, marks);
if (checkLimit && !op.CanDraw(marks, p, out affected))
return false;
if (brush != null && affected != -1) {