To celebrate the holiday season, Call of Duty Modern Warfare 2 players will now be able to enjoy a brand new playlist called The Naughty List, which is specifically themed around the upcoming festivities
The playlist has introduced some game modes to the fold, along with new Christmas-themed elements to Shipment, which adds a bit more element to Modern Warfare 2’s map.
The Naughty List went live on December 21, 2022. Hence, players who have been looking forward to the celebrations will be able to try out the new game modes and features. However, the playlist will only be available for a limited period and will be made offline on January 4, 2023.
Players can try out four game modes, each of which will be set in Shipment. These game modes will be part of the Mosh Pit playlist and feature some of the most in Modern Warfare 2.
Modern Warfare 2 Mosh Pit playlist in The Naughty List
As mentioned, there will be a total of four game modes that players can enjoy in The Naughty List in Modern Warfare 2. They are:
- Hardpoint
- Domination
- Kill Confirmed
- Team Deathmatch
All the modes will be set in Shipment. However, the map has gotten a new look because of the festivities. It has undergone a visual upgrade, and Christmas-themed decorations and motifs will be placed around the map.
Here is a list of changes that were added to Shipment for Modern Warfare 2’s The Naughty List:
- Snowfall during the match
- Having Christmas trees and decorations on the map.
- Containers embellished with Wreaths, Bows, Lights, and sprays.
- Random Presents are scattered throughout the map.
Additionally, all the matches in the four game modes will be 6v6. Hence, there will be a maximum of 12 players on one of the smallest maps in the shooter.
This is one of the reasons the game is so chaotic in all the modes on the list, and players already have some of the most ludicrous KDA.
The Naughty List is temporary and will remain throughout the Holiday Season in the shooter. It will come to a close on January 4, 2023, and might make another appearance in December of the following year.
However, Shipment might not be the map they focus on next time, and some other arenas might be in focus for the next batch of celebrations.
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": 1338646, "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(1338646); 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(1338646) >= 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(1338646) .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 }); })();