ability to cancel construction and have a portion of the funds returned
[browser-rts.git] / src / repository / city.ts
index a17d1d9696a0510ba62f1b6023c383a988e33b9a..c9ecb91b0aa358d96c9de6d4487087b328cd2670 100644 (file)
@@ -134,7 +134,10 @@ export class CityRepository extends Repository<City> {
         return sample.sector_id;
     }
 
-    async save(city: City) {
+    async save(city: Partial<City>) {
+      if(!city.id) {
+        throw new Error('Unknown city to save');
+      }
       const fieldsToSave = [
         'totalSpace', 'usedSpace', 'credits', 'alloys', 'energy', 'food',
         'poulation', 'soldiers', 'attackers', 'defenders', 'sp_attackers', 'sp_defenders',