Skip to content

Commit

Permalink
update full maps
Browse files Browse the repository at this point in the history
  • Loading branch information
b4iterdev committed Feb 7, 2025
1 parent dfaafa7 commit 814681d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class MatchCreateAdvancedComponent {
bestOf = 3;
availableMaps: string[] = [
'Ascent', 'Bind', 'Haven', 'Split',
'Icebox', 'Breeze', 'Fracture', 'Pearl', 'Lotus'
'Icebox', 'Breeze', 'Fracture', 'Pearl', 'Lotus','Sunset','Abyss'
];
selectedMaps: string[] = [];
vetoOrder: vetoOrder[] = [];
Expand Down
9 changes: 0 additions & 9 deletions src/app/shared/config.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
export class Config {
serverUrl = 'http://localhost:3000';
mapList = ["Ascent", "Bind", "Haven", "Icebox", "Split"];
vetoOrder = [
{ order : 1, type: 'ban' , map: 0 },
{ order : 2, type: 'ban' , map: 1 },
{ order : 3, type: 'pick' , map: 0 , side: 1 },
{ order : 4, type: 'pick' , map: 1 , side: 0 },
{ order : 5, type: 'ban' , map: 0 },
{ order : 6, type: 'decider' , map: 1, side: 0 },
];
public constructor(init?: Partial<Config>) {
Object.assign(this, init);
}
Expand Down

0 comments on commit 814681d

Please sign in to comment.