From 0e3c0ca4ad62c48104add6cc98ff02f958872df3 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Mon, 16 Dec 2019 15:58:34 -0500 Subject: [PATCH] Fix issue where the Buildings walkthrough could not be completed --- modules/ui/intro/building.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/intro/building.js b/modules/ui/intro/building.js index 6c01a8e2d..86e55333b 100644 --- a/modules/ui/intro/building.js +++ b/modules/ui/intro/building.js @@ -402,7 +402,7 @@ export function uiIntroBuilding(context, reveal) { // Something changed. Wait for transition to complete and check undo annotation. timeout(function() { - if (context.history().undoAnnotation() === t('operations.orthogonalize.annotation.area')) { + if (context.history().undoAnnotation() === t('operations.orthogonalize.annotation.feature.single')) { continueTo(doneSquare); } else { continueTo(retryClickSquare);