Skip to content

Commit b810fa2

Browse files
committed
ROR: Move Urbanization and City Watch around
1 parent c49600d commit b810fa2

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

ror/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
</div>
7777
<div class="credits">
7878
<p>
79-
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>
79+
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>
8080
|
8181
<a href="/">» DE</a>
8282
</p>

ror/js/techtree.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -637,13 +637,12 @@ function getDefaultTree() {
637637
governmentcenterlane.rows.bronze_2.push(tech(WRITING));
638638
governmentcenterlane.rows.bronze_2.push(tech(ARCHITECTURE));
639639
governmentcenterlane.rows.bronze_2.push(tech(LOGISTICS));
640-
governmentcenterlane.rows.bronze_2.push(tech(CITY_WATCH));
640+
governmentcenterlane.rows.bronze_2.push(tech(URBANIZATION));
641641
governmentcenterlane.rows.iron_1.push(tech(ARISTOCRACY));
642642
governmentcenterlane.rows.iron_1.push(tech(BALLISTICS));
643643
governmentcenterlane.rows.iron_1.push(tech(ALCHEMY));
644644
governmentcenterlane.rows.iron_1.push(tech(ENGINEERING));
645645
governmentcenterlane.rows.iron_1.push(tech(CONSCRIPTION));
646-
governmentcenterlane.rows.iron_2.push(tech(URBANIZATION));
647646
tree.lanes.push(governmentcenterlane);
648647

649648
let newtowncenterlane = new Lane()
@@ -675,6 +674,7 @@ function getDefaultTree() {
675674
towncenterlane.rows.stone_1.push(building(TOWN_CENTER));
676675
towncenterlane.rows.stone_2.push(unit(VILLAGER));
677676
towncenterlane.rows.stone_2.push(tech(TOOL_AGE));
677+
towncenterlane.rows.tool_1.push(tech(CITY_WATCH));
678678
towncenterlane.rows.tool_1.push(tech(BRONZE_AGE));
679679
towncenterlane.rows.bronze_1.push(tech(IRON_AGE));
680680
tree.lanes.push(towncenterlane);
@@ -811,14 +811,13 @@ function getConnections() {
811811
[b(GOVERNMENT_CENTER), t(WRITING)],
812812
[b(GOVERNMENT_CENTER), t(ARCHITECTURE)],
813813
[b(GOVERNMENT_CENTER), t(LOGISTICS)],
814-
[b(GOVERNMENT_CENTER), t(CITY_WATCH)],
814+
[b(GOVERNMENT_CENTER), t(URBANIZATION)],
815815
[b(GOVERNMENT_CENTER), b(TOWN_CENTER_2)],
816816
// [b(GOVERNMENT_CENTER), t(ARISTOCRACY)],
817817
// [b(GOVERNMENT_CENTER), t(BALLISTICS)],
818818
// [b(GOVERNMENT_CENTER), t(ALCHEMY)],
819819
// [b(GOVERNMENT_CENTER), t(ENGINEERING)],
820820
// [b(GOVERNMENT_CENTER), t(CONSCRIPTION)],
821-
// [b(GOVERNMENT_CENTER), t(URBANIZATION)],
822821
[b(TEMPLE), t(ASTROLOGY)],
823822
[b(TEMPLE), t(MYSTICISM)],
824823
[b(TEMPLE), t(POLYTHEISM)],

0 commit comments

Comments
 (0)