From 020ce8fafe6360cf5761d0dd949ac33a9f3705ed Mon Sep 17 00:00:00 2001 From: Wynd Date: Mon, 14 Jul 2025 22:59:02 +0300 Subject: [PATCH] Fixed the drops screens not using their correct game --- src/common/drops.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/drops.rs b/src/common/drops.rs index ed4de3d..49ebd52 100644 --- a/src/common/drops.rs +++ b/src/common/drops.rs @@ -17,7 +17,7 @@ impl Drops { let material_kinds = drops .iter() - .map(|d| d.category.get_category(&Game::Kh1)) + .map(|d| d.category.get_category(&game)) .dedup() .collect::>();