aboutsummaryrefslogtreecommitdiff
path: root/server/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/main.rs')
-rw-r--r--server/src/main.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/server/src/main.rs b/server/src/main.rs
index e505195c..4d761b0c 100644
--- a/server/src/main.rs
+++ b/server/src/main.rs
@@ -31,6 +31,7 @@ async fn main() -> Result<()> {
let data = build_gamedata(
serde_yaml::from_reader(File::open("data/recipes.yaml").unwrap()).unwrap(),
serde_yaml::from_reader(File::open("data/map.yaml").unwrap()).unwrap(),
+ serde_yaml::from_reader(File::open("data/demands.yaml").unwrap()).unwrap(),
);
let game = Arc::new(RwLock::new(Game::new(data.into())));