diff --git a/src/mcedit2/editortools/brush/__init__.py b/src/mcedit2/editortools/brush/__init__.py index d6764ec..bb2ff20 100644 --- a/src/mcedit2/editortools/brush/__init__.py +++ b/src/mcedit2/editortools/brush/__init__.py @@ -140,7 +140,11 @@ class Fill(BrushMode): :type command: BrushCommand """ fill = command.editorSession.currentDimension.fillBlocksIter(selections[0], command.blockInfo) - showProgress("Applying brush...", fill) + if selections[0].chunkCount > 32: + showProgress("Applying brush...", fill) + else: + for _ in fill: + pass class BrushModes(object):