diff options
Diffstat (limited to 'server/src/entity/customers/demands.rs')
-rw-r--r-- | server/src/entity/customers/demands.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/server/src/entity/customers/demands.rs b/server/src/entity/customers/demands.rs index 4f15f86f..33557b50 100644 --- a/server/src/entity/customers/demands.rs +++ b/server/src/entity/customers/demands.rs @@ -80,11 +80,11 @@ pub fn generate_demands( .iter() .filter_map(|(i, o, d)| { producable.get(i).map(|cost| Demand { - from: *i, - to: *o, - duration: *d, - points: *cost as i64, - }) + from: *i, + to: *o, + duration: *d, + points: *cost as i64, + }) }) .collect() } |