There's a City Trade Screen?

LilBudyWizer

Warlord
Joined
Nov 11, 2014
Messages
173
JavaScript:
Controls.define('screen-city-trade', {
    createInstance: ScreenCityTrade,
    description: 'View City resources and trade routes',
    classNames: ['screen-city-trade'],
    styles: ['fs://game/base-standard/ui/city-trade/screen-city-trade.css'],
    content: ['fs://game/base-standard/ui/city-trade/screen-city-trade.html']
});

There seems to be, though it may not actually be implemented or work. I have no idea how to open that screen. It seems for a city it lists all the active trade routes for that city. That seems useful. Does anyone know of any way to get to that screen?
 
This is what it shows:
1744565549036.png


And I have about 8 trade routes going.

I temporarily edited the Wonders Screen mod to show 'screen-city-trade' instead of 'screen-wonders'. This is what it calls:
JavaScript:
ContextManager.push("screen-city-trade", { singleton: true, createMouseGuard: true });
 
Last edited:
Back
Top Bottom