Skip to content

Commit

Permalink
Update d2tools to dpkg 0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
cohaereo committed Jun 25, 2024
1 parent 16d9fd4 commit 2ebe367
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/d2tools/src/bin/randomsound-to-sboxsound.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use alkahest_data::sound::SSoundCollection;
use alkahest_pm::{package_manager, PACKAGE_MANAGER};
use anyhow::Context;
use clap::Parser;
use destiny_pkg::{PackageManager, PackageVersion, TagHash};
use destiny_pkg::{GameVersion, PackageManager, TagHash};
use fs_err::File;
use tiger_parse::dpkg::PackageManagerExt;

Expand All @@ -29,7 +29,7 @@ fn main() -> anyhow::Result<()> {
let args = Args::parse();

info!("Initializing package manager");
let pm = PackageManager::new(args.packages_path, PackageVersion::Destiny2Lightfall).unwrap();
let pm = PackageManager::new(args.packages_path, GameVersion::Destiny2Lightfall).unwrap();

*PACKAGE_MANAGER.write() = Some(Arc::new(pm));

Expand Down

0 comments on commit 2ebe367

Please sign in to comment.