add mirage and office prophunt

This commit is contained in:
shoopea
2026-03-29 14:47:56 +02:00
parent b7761b0e5b
commit cb6f5e3cfc
2 changed files with 10 additions and 2 deletions

View File

@@ -286,6 +286,8 @@ $(document).ready(function () {
} else if (e.value == "7") { // other } else if (e.value == "7") { // other
// WORKSHOP // WORKSHOP
map_list.push("de_inferno_prophunt"); // 3608612434 map_list.push("de_inferno_prophunt"); // 3608612434
map_list.push("cs_office_prophunt"); // 3644811896
map_list.push("de_mirage_prophunt"); // 3615968422
} }
$('#map').empty(); $('#map').empty();

View File

@@ -17,6 +17,9 @@ router.post('/api/setup-game', is_authenticated, async (req, res) => {
const game = req.body.game.toString(); const game = req.body.game.toString();
switch(map){ switch(map){
case "cs_office_prophunt":
map = 3644811896;
break;
case "de_assembly": case "de_assembly":
map = 3071005299; map = 3071005299;
break; break;
@@ -33,7 +36,10 @@ router.post('/api/setup-game', is_authenticated, async (req, res) => {
map = 3246527710; map = 3246527710;
break; break;
case "de_inferno_prophunt": case "de_inferno_prophunt":
map = 3608612434 map = 3608612434;
break;
case "de_mirage_prophunt":
map = 3615968422;
break; break;
case "de_memento": case "de_memento":
map = 3165559377; map = 3165559377;