Resource fixes!
[browser-rts.git] / src / render / map.ts
index 219103d5cfb5f76b5051d7e3a0a51baaad503482..a9e83493b1a002f1bfe2da6d32a04630218e1c43 100644 (file)
@@ -2,10 +2,8 @@ import _ from "lodash";
 import { DateTime } from "luxon";
 import { Account } from "../repository/accounts";
 import { ArmyQueueWithAttackedOwner } from "../repository/army";
-import { City, CityRepository, CityWithLocation } from "../repository/city";
-import { topbar } from "./topbar";
+import { CityRepository, CityWithLocation } from "../repository/city";
 import { AVAILABLE_SECTORS } from '../config';
-import {initArray} from "../lib/util";
 
 const cityRepo = new CityRepository();
 
@@ -181,5 +179,5 @@ export async function launchOffensive(city: CityWithLocation, owner: Account, yo
     </form>
     `;
 
-    return html + topbar(yourCity);
+    return html;
 }