From d5c3e3108f2fa6f5596913163c071163158a5c08 Mon Sep 17 00:00:00 2001 From: David Vierra Date: Wed, 2 Mar 2016 02:45:04 -1000 Subject: [PATCH] Re-enable lighting update for "Replace Blocks" --- src/mcedit2/editorcommands/find_replace/replace_blocks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mcedit2/editorcommands/find_replace/replace_blocks.py b/src/mcedit2/editorcommands/find_replace/replace_blocks.py index 9aadf63..e340451 100644 --- a/src/mcedit2/editorcommands/find_replace/replace_blocks.py +++ b/src/mcedit2/editorcommands/find_replace/replace_blocks.py @@ -41,6 +41,6 @@ class FindReplaceBlocks(QtCore.QObject): else: selection = self.editorSession.currentDimension.bounds with command.begin(): - task = self.editorSession.currentDimension.fillBlocksIter(selection, replacements, updateLights=False) + task = self.editorSession.currentDimension.fillBlocksIter(selection, replacements) showProgress("Replacing...", task) self.editorSession.pushCommand(command) \ No newline at end of file