Skip to content

Commit

Permalink
Fix flipped mod filter condition on extract
Browse files Browse the repository at this point in the history
  • Loading branch information
circlesabound committed Apr 24, 2024
1 parent cd82a0d commit a57206f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/agent/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1113,7 +1113,7 @@ impl AgentController {
Ok(header) => {
let base_mod_name = header.base_mod;
let ret = header.mods.into_iter().filter(|shm| {
shm.name == base_mod_name
shm.name != base_mod_name
}).map(|shm| {
ModObject {
name: shm.name,
Expand Down

0 comments on commit a57206f

Please sign in to comment.