Skip to content

Commit

Permalink
Swap Overpass Default for Anubis.
Browse files Browse the repository at this point in the history
  • Loading branch information
PhlexPlexico committed May 7, 2024
1 parent 939a183 commit 86fbdac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion __test__/mapstats.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe("Test the mapstats routes", () => {
let teamData = [{
match_id: 3,
map_number: 1,
map_name: 'de_overpass',
map_name: 'de_anubis',
start_time: new Date().toISOString().slice(0, 19).replace("T", " ")
}];
return request
Expand Down
6 changes: 3 additions & 3 deletions src/utility/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ async function returnStrategy(identifier, profile, done) {
defaultMaps.push(['de_ancient', 'Ancient', curUser[0].id]);
defaultMaps.push(['de_mirage', 'Mirage', curUser[0].id]);
defaultMaps.push(['de_nuke', 'Nuke', curUser[0].id]);
defaultMaps.push(['de_overpass', 'Overpass', curUser[0].id]);
defaultMaps.push(['de_anubis', 'Anubis', curUser[0].id]);
defaultMaps.push(['de_dust2', 'Dust II', curUser[0].id]);
defaultMaps.push(['de_vertigo', 'Vertigo', curUser[0].id]);
sql = "INSERT INTO map_list (map_name, map_display_name, user_id) VALUES ?";
Expand All @@ -112,7 +112,7 @@ async function returnStrategy(identifier, profile, done) {
defaultMaps.push(['de_ancient', 'Ancient', curUser[0].id]);
defaultMaps.push(['de_mirage', 'Mirage', curUser[0].id]);
defaultMaps.push(['de_nuke', 'Nuke', curUser[0].id]);
defaultMaps.push(['de_overpass', 'Overpass', curUser[0].id]);
defaultMaps.push(['de_anubis', 'Anubis', curUser[0].id]);
defaultMaps.push(['de_dust2', 'Dust II', curUser[0].id]);
defaultMaps.push(['de_vertigo', 'Vertigo', curUser[0].id]);
sql = "INSERT INTO map_list (map_name, map_display_name, user_id) VALUES ?";
Expand Down Expand Up @@ -228,7 +228,7 @@ passport.use('local-register',
defaultMaps.push(['de_ancient', 'Ancient', curUser[0].id]);
defaultMaps.push(['de_mirage', 'Mirage', curUser[0].id]);
defaultMaps.push(['de_nuke', 'Nuke', curUser[0].id]);
defaultMaps.push(['de_overpass', 'Overpass', curUser[0].id]);
defaultMaps.push(['de_anubis', 'Anubis', curUser[0].id]);
defaultMaps.push(['de_dust2', 'Dust II', curUser[0].id]);
defaultMaps.push(['de_vertigo', 'Vertigo', curUser[0].id]);
sql = "INSERT INTO map_list (map_name, map_display_name, user_id) VALUES ?";
Expand Down

0 comments on commit 86fbdac

Please sign in to comment.