Back in 2020, after the Houston Astros sign-stealing scandal went public, many players from the organization, including Justin Verlander, came up and apologized to the fans for cheating. In his press statement, Verlander said he wasn't too proud about not speaking out enough that the incident was taking place.

Justin Verlander had moved to the Houston franchise during the trade window that season. He was traded by the Detroit Tigers, with whom he spent 12 long years. However, the move to the Astros turned out to be frutiful for Verlander as he notched up an ALCS MVP and was the co-winner of the Babe Ruth Award for best performance in the postseason. The Astros also won the World Series.

In the 2019-20 offseason, the only major headlines from the world of MLB was the Houston Astros cheating scandal. The Athletic published an article that outlined how the Astros used electronic equipment to monitor what an opposing pitcher was going to throw. Astros staffers determined the pitch by stealing the catcher’s signs and then alert the batter about what pitch was coming.

march madness logo

70% Win

(110-25-1)

70% Win

(110-25-1)

70% Win

(110-25-1)

'; }); pollOptions.innerHTML = pollOptionsDom; pollCount.innerHTML = totalVotes + ' votes'; if (totalVotes > 10) { pollCount.classList.remove("hidden"); } } function trackBetsTodayPollImpression() { var intersectionObserverForArticlePoll = new IntersectionObserver( function(entries) { entries.forEach(function(entry) { var pollId = entry.target.getAttribute("data-poll-id"); if (POLLS_BY_ID[pollId]['impression_tracked']) return; if (!entry.target || !entry.isIntersecting || entry.intersectionRatio < 0.5) return; setTimeout(function() { if (isInViewport(entry.target)) { POLLS_BY_ID[pollId]['impression_tracked'] = true; var isDesktop = "1"; var gaPayload = { "question" : POLLS_BY_ID[pollId]['question'], "category": "Baseball", "page_url": window.location.href, "option1": POLLS_BY_ID[pollId]['option1'], "option2": POLLS_BY_ID[pollId]['option2'], } if (isDesktop) { gaPayload["device"] = "Desktop"; } else { gaPayload["device"] = "Mobile"; } gtag("event", "BETS_TODAY_POLL_IMPRESSION", gaPayload); intersectionObserverForArticlePoll.unobserve(entry.target); } }, 1000); }); }, { threshold: 0.5 } ); var pollElements = document.querySelectorAll('.bets-today-poll'); pollElements.forEach(function(pollElement) { var isAnswered = pollElement.querySelector(".poll-option-answered"); if (!isAnswered) { intersectionObserverForArticlePoll.observe(pollElement); } }) } return { answerPollX: answerPollX, }; }();

Many players from the team, like Jose Altuve and Alex Bregman, offered apologies in press conferences for having done wrong to their competitors and fans. Justin Verlander came out and said:

“Once I spent some time and understood what was happening, I wish I had said more. I can’t go back and reverse my decision. I wish I had said more and I didn’t.

When asked about his initial reaction when he joined the team in the middle of the season to find out what was going on, Justin Verlander refused to comment. He dodged other questions where he was asked what his discussions were with his fellow teammates regarding the scandal.

Justin Verlander had spoken out against sign-stealing while at the Tigers in early 2017

Justin Verlander, in early 2017 at a media gathering while still at the Detroit Tigers, had spoken out against batters who understood his signs during the game. In his own words, he had stated how the gamesmanship was slowly fading from baseball.

“It’s not about gamesmanship anymore," he said in 2017. "It used to be, ‘Hey, if you can get my signs, good for you.’ In the past, if a guy on second (base) was able to decipher it on a few pitches, I guess that was kind of part of the game. I think it’s a different level now. It’s not good.”

Officials related to the sign-stealing scandal were immediately forced out of their contracts by various teams with whom they were assigned in 2020. After the Astros continued to have dominating runs in the postseason, questions were raised on their integrity again.

Quick Links

More from Sportskeeda

" modalPopup.closeOnEsc = false; modalPopup.setHeader("Why did you not like this content?"); modalPopup.setContentText(modalText); modalPopup.addCancelOkButton("Submit", resetRatingAndFeedbackForm, sendRating); modalPopup.removeCloseModalIcon(); modalPopup.disableDismissPopup(); modalPopup.open(); } else { sendRating(index); } } function sendRating() { var requestPayload = { "post_id": 1354490, "rating_value": ratingValue } if (ratingValue > 3) { requestPayload.rating_feedback_type = null; requestPayload.rating_feedback = null; } else { if (!$('input[name="drone"]:checked') || !$('input[name="drone"]:checked').value) { showErrorMessage('option'); return; } if (!$(".post-rating-feedback-note textarea") || !$(".post-rating-feedback-note textarea").value) { showErrorMessage('note'); return; } var selectedOption = $('input[name="drone"]:checked').value; var feedbackNote = $(".post-rating-feedback-note textarea").value; requestPayload.rating_feedback_type = selectedOption; requestPayload.rating_feedback = feedbackNote; } pureJSAjaxPost(addratingAPI, requestPayload, onsaveRatingSuccess, onsaveRatingFail, function() {}, true); } function resetRatingAndFeedbackForm() { var activeStars = Array.from($all('.rating span.rating-star.active')); for (var i=0; i < activeStars.length; i++) { activeStars[i].classList.remove("active"); } if ($('input[name="drone"]:checked')) { $('input[name="drone"]:checked').checked = false; } var userNote = document.querySelector(".post-rating-feedback-note textarea"); userNote.value = ''; modalPopup.close(); } function onsaveRatingSuccess() { modalPopup.close(); savePostIdInUserRatedPostsCookie(); $("#post-rating-layout").classList.add("hidden"); $("#post-rating-message").classList.remove("hidden"); window.setInterval(function showMessage() { $("#post-rating-widget").classList.add("hidden"); }, 3000); } function onsaveRatingFail() { console.error('Saving post rating failed!'); modalPopup.close(); } function savePostIdInUserRatedPostsCookie() { userRatedPostIds.push(1354490); var expiryTime = new Date(); expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 year setCookie("user_rated_post_ids", JSON.stringify(userRatedPostIds), expiryTime); } function isPostRatedByUser() { var userRatedPostIds = getCookie('user_rated_post_ids'); if (userRatedPostIds) { try { userRatedPostIds = JSON.parse(userRatedPostIds); } catch (err) { console.error(err); return false; } } else { return false; } if(userRatedPostIds.indexOf(1354490) >= 0) { return true; } else { return false; } } function getRatingCountByPostId(postId) { return new Promise(function(resolve, reject) { pureJSAjaxGet( getRatingCountBaseURL + postId + '/rating/count', function(data) { try { data = JSON.parse(data); if (data.meta_value) { resolve(data.meta_value); } reject("Failed to fetch rating count for the post:" + postId); } catch (err) { reject("Failed to fetch rating count for the post:" + postId); } }, function(err) { reject("Failed to fetch rating count for the post:" + postId); }, true); }); } function showErrorMessage(messageType) { var messageContainerId = '#' + messageType + '-error'; $(messageContainerId).classList.remove('hidden'); window.setInterval(function () { $(messageContainerId).classList.add("hidden"); }, 5000); } (function() { var callFired = false; function lazyLoadPostRating() { if (callFired) return; callFired = true; if (!isPostRatedByUser()) { getRatingCountByPostId(1354490) .then(function(ratingCount) { if (ratingCount < 10) { $("#post-rating-widget").classList.remove("hidden"); } }) .catch(function(err){ console.error(err); }); } } document.addEventListener("scroll", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("mousemove", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("touchmove", lazyLoadPostRating, { passive: true, once: true }); })();

ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaJqRqLKjrculZrCglaN6q8HSraCnZaaav62tzZ2cq2WVrb2zsdKsnJ1lopq0s7HTZqmepZGeu6q6xmaqoqSVo8FusMSsp6KslWKuuK3RnmShp6WowbC6jJqqraqfqHpzfJBwZJyglZbBqrrGZqqcmZ6Zrq0%3D