Skip to content

Commit

Permalink
Added new map data
Browse files Browse the repository at this point in the history
  • Loading branch information
Malte Schütze committed Jan 16, 2015
1 parent bf620d6 commit 7b27f2d
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
* Added missing game modes
* Added queue type and queue id for the new custom game mode, nemesis pick
* Added "Master" league tier
* Added new map (SR Beta)

##### Rtmp
* Fixed bug where bot game invites would not pass the queue id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,17 @@ public Map getMapEnum() {
"???"
);

public static final GameMap SUMMONERS_RIFT_NEW = new GameMap(
"Summoner's Rift (Beta)",
"SummonersRift",
11,
1,
10,
"The newest and most venerated Field of Justice is known as Summoner's Rift. Traverse down one of three " +
"different paths in order to attack your enemy at their weakest point. Work with your allies to siege " +
"the enemy base and destroy their Nexus!"
);

/**
* Not accessible to clients
*/
Expand Down
8 changes: 7 additions & 1 deletion domain/src/main/java/net/boreeas/riotapi/constants/Map.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,13 @@ public enum Map {
TWISTED_TREELINE_ORIG(4, "Twisted Treeline (Original)", GameMap.TWISTED_TREELINE_OLD),
CRYSTAL_SCAR(8, "The Crystal Scar", GameMap.CRYSTAL_SCAR),
TWISTED_TREELINE_CURR(10, "Twisted Treeline (Current)", GameMap.TWISTED_TREELINE),
DEBUG_MAP(11, "Debug Map", null),
/**
* summoners rift beta map
* @deprecated Use {@link #SR_NEW} instead
*/
@Deprecated
DEBUG_MAP(11, "Summoner", null),
SR_NEW(11, "Summoner's Rift (Updated)", GameMap.SUMMONERS_RIFT),
HOWLING_ABYSS(12, "Howling Abyss", GameMap.HOWLING_ABYSS);


Expand Down

0 comments on commit 7b27f2d

Please sign in to comment.