OSDN Git Service

不要となっていたプロパティを削除
[kcd/KCD.git] / KCD / ApplySuppliesCommand.swift
index 0340793..d241816 100644 (file)
@@ -15,22 +15,43 @@ final class ApplySuppliesCommand: JSONCommand {
         let store = ServerDataStore.oneTimeEditor()
         
         data["api_ship"]
-            .forEach { (_, json) in
+            .forEach { _, json in
                 
-                guard let i = json["api_id"].int else { return }
-                guard let ship = store.ship(by: i) else { return }
-                guard let bull = json["api_bull"].int else { return }
-                guard let fuel = json["api_fuel"].int else { return }
-                guard let slots = json["api_onslot"].arrayObject as? [Int] else { return }
-                guard slots.count > 4 else { return }
+                guard let i = json["api_id"].int else {
+                    
+                    return
+                }
+                guard let ship = store.sync(execute: { store.ship(by: i) }) else {
+                    
+                    return
+                }
+                guard let bull = json["api_bull"].int else {
+                    
+                    return
+                }
+                guard let fuel = json["api_fuel"].int else {
+                    
+                    return
+                }
+                guard let slots = json["api_onslot"].arrayObject as? [Int] else {
+                    
+                    return
+                }
+                guard slots.count > 4 else {
+                    
+                    return
+                }
                 
-                ship.bull = bull
-                ship.fuel = fuel
-                ship.onslot_0 = slots[0]
-                ship.onslot_1 = slots[1]
-                ship.onslot_2 = slots[2]
-                ship.onslot_3 = slots[3]
-                ship.onslot_4 = slots[4]
+                store.sync {
+                    
+                    ship.bull = bull
+                    ship.fuel = fuel
+                    ship.onslot_0 = slots[0]
+                    ship.onslot_1 = slots[1]
+                    ship.onslot_2 = slots[2]
+                    ship.onslot_3 = slots[3]
+                    ship.onslot_4 = slots[4]
+                }
         }
     }
 }