Re-enable lighting update for "Replace Blocks"

This commit is contained in:
David Vierra 2016-03-02 02:45:04 -10:00
parent 7d53403a29
commit d5c3e3108f

View File

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