UI update for map with sector selector
[browser-rts.git] / scripts / generate-cities.ts
index 5583b86745e74417f6eaa35db7b44602e2e8c377..43b2f390fbf882e6a770c1a3012bf87dc067b065 100644 (file)
@@ -5,10 +5,10 @@ const cityRepo = new CityRepository();
 
 (async () => {
     for(let i = 0; i < 100; ++i) {
-        await cityRepo.create(uuid());
+        await cityRepo.create(uuid(), true);
     }
 
     console.log('Created 100 cities');
 
     process.exit(0);
-})();
\ No newline at end of file
+})();