diff --git a/public/js/console.js b/public/js/console.js index a5f6965..fbb26db 100644 --- a/public/js/console.js +++ b/public/js/console.js @@ -286,6 +286,8 @@ $(document).ready(function () { } else if (e.value == "7") { // other // WORKSHOP map_list.push("de_inferno_prophunt"); // 3608612434 + map_list.push("cs_office_prophunt"); // 3644811896 + map_list.push("de_mirage_prophunt"); // 3615968422 } $('#map').empty(); diff --git a/routes/game.js b/routes/game.js index ffd26c0..ab3ae15 100644 --- a/routes/game.js +++ b/routes/game.js @@ -17,6 +17,9 @@ router.post('/api/setup-game', is_authenticated, async (req, res) => { const game = req.body.game.toString(); switch(map){ + case "cs_office_prophunt": + map = 3644811896; + break; case "de_assembly": map = 3071005299; break; @@ -33,8 +36,11 @@ router.post('/api/setup-game', is_authenticated, async (req, res) => { map = 3246527710; break; case "de_inferno_prophunt": - map = 3608612434 - break; + map = 3608612434; + break; + case "de_mirage_prophunt": + map = 3615968422; + break; case "de_memento": map = 3165559377; break;