Skip to content

Commit

Permalink
ROR: Move Urbanization and City Watch around
Browse files Browse the repository at this point in the history
  • Loading branch information
HSZemi committed Nov 28, 2023
1 parent c49600d commit b810fa2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ror/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
</div>
<div class="credits">
<p>
Version: Age of Empires II RoR Update <a href="https://www.ageofempires.com/news/preview-age-of-empires-ii-definitive-edition-update-95810/" target="_blank" title="Changelog" rel="nofollow">95810</a>
Version: Age of Empires II RoR Update <a href="https://www.ageofempires.com/news/preview-age-of-empires-ii-definitive-edition-update-95810/" target="_blank" title="Changelog" rel="nofollow">95810</a>
|
<a href="/">» DE</a>
</p>
Expand Down
7 changes: 3 additions & 4 deletions ror/js/techtree.js
Original file line number Diff line number Diff line change
Expand Up @@ -637,13 +637,12 @@ function getDefaultTree() {
governmentcenterlane.rows.bronze_2.push(tech(WRITING));
governmentcenterlane.rows.bronze_2.push(tech(ARCHITECTURE));
governmentcenterlane.rows.bronze_2.push(tech(LOGISTICS));
governmentcenterlane.rows.bronze_2.push(tech(CITY_WATCH));
governmentcenterlane.rows.bronze_2.push(tech(URBANIZATION));
governmentcenterlane.rows.iron_1.push(tech(ARISTOCRACY));
governmentcenterlane.rows.iron_1.push(tech(BALLISTICS));
governmentcenterlane.rows.iron_1.push(tech(ALCHEMY));
governmentcenterlane.rows.iron_1.push(tech(ENGINEERING));
governmentcenterlane.rows.iron_1.push(tech(CONSCRIPTION));
governmentcenterlane.rows.iron_2.push(tech(URBANIZATION));
tree.lanes.push(governmentcenterlane);

let newtowncenterlane = new Lane()
Expand Down Expand Up @@ -675,6 +674,7 @@ function getDefaultTree() {
towncenterlane.rows.stone_1.push(building(TOWN_CENTER));
towncenterlane.rows.stone_2.push(unit(VILLAGER));
towncenterlane.rows.stone_2.push(tech(TOOL_AGE));
towncenterlane.rows.tool_1.push(tech(CITY_WATCH));
towncenterlane.rows.tool_1.push(tech(BRONZE_AGE));
towncenterlane.rows.bronze_1.push(tech(IRON_AGE));
tree.lanes.push(towncenterlane);
Expand Down Expand Up @@ -811,14 +811,13 @@ function getConnections() {
[b(GOVERNMENT_CENTER), t(WRITING)],
[b(GOVERNMENT_CENTER), t(ARCHITECTURE)],
[b(GOVERNMENT_CENTER), t(LOGISTICS)],
[b(GOVERNMENT_CENTER), t(CITY_WATCH)],
[b(GOVERNMENT_CENTER), t(URBANIZATION)],
[b(GOVERNMENT_CENTER), b(TOWN_CENTER_2)],
// [b(GOVERNMENT_CENTER), t(ARISTOCRACY)],
// [b(GOVERNMENT_CENTER), t(BALLISTICS)],
// [b(GOVERNMENT_CENTER), t(ALCHEMY)],
// [b(GOVERNMENT_CENTER), t(ENGINEERING)],
// [b(GOVERNMENT_CENTER), t(CONSCRIPTION)],
// [b(GOVERNMENT_CENTER), t(URBANIZATION)],
[b(TEMPLE), t(ASTROLOGY)],
[b(TEMPLE), t(MYSTICISM)],
[b(TEMPLE), t(POLYTHEISM)],
Expand Down

0 comments on commit b810fa2

Please sign in to comment.