summaryrefslogtreecommitdiff
path: root/src/server/construction.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/construction.rs')
-rw-r--r--src/server/construction.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/server/construction.rs b/src/server/construction.rs
index 50a193a..0e24952 100644
--- a/src/server/construction.rs
+++ b/src/server/construction.rs
@@ -37,7 +37,9 @@ impl ServerConnection {
construction.give_recv(recv, &construction_data);
if construction_data.status == ConstructionStatus::Constructed {
- storage.take_items(ItemType::Iron, constants::SHIP_CONSTRUCTION_IRON_COST);
+ storage
+ .take_items(ItemType::Iron, constants::SHIP_CONSTRUCTION_IRON_COST)
+ .unwrap();
masses.insert(
"Station".to_string(),
Mass::new_station(
@@ -46,7 +48,7 @@ impl ServerConnection {
ship.velocity.clone(),
),
);
- construction.taken();
+ construction.constructed();
}
}