From 0f9da2da659a86d4af916561dd374d3bdf70a35e Mon Sep 17 00:00:00 2001 From: rasul Date: Tue, 7 Apr 2020 20:24:25 -0500 Subject: [PATCH] config.starting_location is now config.player.starting_location --- src/game/state/login.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/state/login.rs b/src/game/state/login.rs index 3233c1a..a148872 100644 --- a/src/game/state/login.rs +++ b/src/game/state/login.rs @@ -82,7 +82,7 @@ impl Game { name: username.clone(), password: pass, created: Utc::now(), - location: self.config.starting_location.clone(), + location: self.config.player.starting_location.clone(), }; if self.db.single_save_player(token, &player).is_ok() {