Skip to content

Commit

Permalink
Merge pull request #1549 from OutpostUniverse/fixMissingParenthesis
Browse files Browse the repository at this point in the history
Fix missing parenthesis when robot task completes
  • Loading branch information
DanRStevens authored Jan 29, 2025
2 parents 9b078ca + 160d89d commit 089b1dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appOPHD/States/MapViewState.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1329,7 +1329,7 @@ void MapViewState::updateRobots()

mNotificationArea.push({
"Robot Task Completed",
robot->name() + " completed its task at" + std::to_string(tile->xy().x) + ", " + std::to_string(tile->xy().y) + ").",
robot->name() + " completed its task at (" + std::to_string(tile->xy().x) + ", " + std::to_string(tile->xy().y) + ").",
tile->xyz(),
NotificationArea::NotificationType::Success
});
Expand Down

0 comments on commit 089b1dd

Please sign in to comment.