Skip to content

Commit 3d7f7be

Browse files
committed
oj simpson
1 parent 1f91de3 commit 3d7f7be

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

terraps/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ tracing-futures.workspace = true
3838
tracing-subscriber.workspace = true
3939

4040
tower-http = { version = "0.5", features = ["trace"] }
41-
4241
common_utils = { path = "../common" }
4342

4443
[[bin]]

terraps/src/game/crisis_manager.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ pub mod crisis_v2 {
5252
let config = read_json(CONFIG_JSON_PATH);
5353

5454
let selected_crisis = config["crisisV2Config"]["selectedCrisis"].as_str().unwrap();
55-
let rune = read_json(format!("{CRISIS_V2_JSON_BASE_PATH}{selected_crisis}.json").as_str());
55+
let rune = read_json(format!("{CRISIS_V2_JSON_BASE_PATH}{selected_crisis}.json"));
5656
let battle_data = read_json(RUNE_JSON_PATH).clone();
5757
let map_id = battle_data["mapId"].as_str().unwrap();
5858
let rune_slots = battle_data["runeSlots"].clone();

0 commit comments

Comments
 (0)