Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Renamed Tokyo Disney Resort parks for consistency #158

Merged
merged 1 commit into from
May 29, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ If you wish to use themeparks with a proxy, you can set a proxy in the library s
* Magic Kingdom - Disneyland Paris (ThemeParks.Parks.DisneylandParisMagicKingdom)
* Walt Disney Studios - Disneyland Paris (ThemeParks.Parks.DisneylandParisWaltDisneyStudios)
* Magic Kingdom - Shanghai Disney Resort (ThemeParks.Parks.ShanghaiDisneyResortMagicKingdom)
* Tokyo Disney Resort - Magic Kingdom (ThemeParks.Parks.TokyoDisneyResortMagicKingdom)
* Tokyo Disney Resort - Disney Sea (ThemeParks.Parks.TokyoDisneyResortDisneySea)
* Magic Kingdom - Tokyo Disney Resort (ThemeParks.Parks.TokyoDisneyResortMagicKingdom)
* Disney Sea - Tokyo Disney Resort (ThemeParks.Parks.TokyoDisneyResortDisneySea)
* Hong Kong Disneyland (ThemeParks.Parks.HongKongDisneyland)
* Universal Studios Florida (ThemeParks.Parks.UniversalStudiosFlorida)
* Universal's Islands Of Adventure (ThemeParks.Parks.UniversalIslandsOfAdventure)
Expand Down Expand Up @@ -177,8 +177,8 @@ If you wish to use themeparks with a proxy, you can set a proxy in the library s
|Magic Kingdom - Disneyland Paris|✓|✓|✓|
|Walt Disney Studios - Disneyland Paris|✓|✓|✓|
|Magic Kingdom - Shanghai Disney Resort|✓|✓|✓|
|Tokyo Disney Resort - Magic Kingdom|✓|✓|✗|
|Tokyo Disney Resort - Disney Sea|✓|✓|✗|
|Magic Kingdom - Tokyo Disney Resort|✓|✓|✗|
|Disney Sea - Tokyo Disney Resort|✓|✓|✗|
|Hong Kong Disneyland|✓|✓|✓|
|Universal Studios Florida|✓|✓|✗|
|Universal's Islands Of Adventure|✓|✓|✗|
Expand Down Expand Up @@ -309,8 +309,8 @@ Prints:
* Magic Kingdom - Disneyland Paris [(48°52′13.16″N, 2°46′46.82″E)]: (Europe/Paris)
* Walt Disney Studios - Disneyland Paris [(48°52′5.78″N, 2°46′50.59″E)]: (Europe/Paris)
* Magic Kingdom - Shanghai Disney Resort [(31°8′35.88″N, 121°39′28.80″E)]: (Asia/Shanghai)
* Tokyo Disney Resort - Magic Kingdom [(35°38′5.45″N, 139°52′45.46″E)]: (Asia/Tokyo)
* Tokyo Disney Resort - Disney Sea [(35°37′37.40″N, 139°53′20.75″E)]: (Asia/Tokyo)
* Magic Kingdom - Tokyo Disney Resort [(35°38′5.45″N, 139°52′45.46″E)]: (Asia/Tokyo)
* Disney Sea - Tokyo Disney Resort [(35°37′37.40″N, 139°53′20.75″E)]: (Asia/Tokyo)
* Hong Kong Disneyland [(22°18′47.52″N, 114°2′40.20″E)]: (Asia/Hong_Kong)
* Universal Studios Florida [(28°28′29.94″N, 81°27′59.39″W)]: (America/New_York)
* Universal's Islands Of Adventure [(28°28′20.07″N, 81°28′4.28″W)]: (America/New_York)
Expand Down
2 changes: 1 addition & 1 deletion lib/disneytokyo/tokyodisneyresortdisneysea.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class TokyoDisneyResortDisneySea extends DisneyTokyoPark {
* Create a new TokyoDisneyResortDisneySea object
*/
constructor(options = {}) {
options.name = options.name || "Tokyo Disney Resort - Disney Sea";
options.name = options.name || "Disney Sea - Tokyo Disney Resort";
options.timezone = options.timezone || "Asia/Tokyo";

// set park's location as it's entrance
Expand Down
2 changes: 1 addition & 1 deletion lib/disneytokyo/tokyodisneyresortmagickingdom.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class TokyoDisneyResortMagicKingdom extends DisneyTokyoPark {
* Create a new TokyoDisneyResortMagicKingdom object
*/
constructor(options = {}) {
options.name = options.name || "Tokyo Disney Resort - Magic Kingdom";
options.name = options.name || "Magic Kingdom - Tokyo Disney Resort";
options.timezone = options.timezone || "Asia/Tokyo";

// set park's location as it's entrance
Expand Down