diff --git a/server/src/modules/cities/cities.routes.ts b/server/src/modules/cities/cities.routes.ts index 4edd962..607b58e 100644 --- a/server/src/modules/cities/cities.routes.ts +++ b/server/src/modules/cities/cities.routes.ts @@ -14,6 +14,8 @@ const citySelect = { riskLevel: true, policePressure: true, economyModifier: true, + mapX: true, + mapY: true, } as const; export const citiesRoutes: FastifyPluginAsync = async (app) => { diff --git a/server/src/modules/market/market.service.ts b/server/src/modules/market/market.service.ts index 55d1edf..7665932 100644 --- a/server/src/modules/market/market.service.ts +++ b/server/src/modules/market/market.service.ts @@ -48,6 +48,7 @@ export async function getCurrentMarket(playerId: string) { name: p.item.name, buyPrice: p.buyPrice, sellPrice: p.sellPrice, + basePrice: p.item.basePrice, demand: p.demand, supply: p.supply, rarity: p.item.rarity,