Skip to content

Commit

Permalink
Remove extra logs on item service
Browse files Browse the repository at this point in the history
  • Loading branch information
nmeylan committed Mar 8, 2024
1 parent 9ead3e1 commit fd83e43
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion server/src/server/script/bonus.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ impl NativeMethodHandler for BonusScriptHandler {
execution_thread.push_constant_on_stack(value);
}
} else {
println!("Function {} is not implemented", native.name);
// println!("Function {} is not implemented", native.name);
}
}
}
Expand Down
3 changes: 0 additions & 3 deletions server/src/server/service/item_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,6 @@ impl ItemService {
item.bonuses.iter().filter_map(|b| {
if let BonusType::ElementWeapon(element) = b { Some(*element) } else { None }
}).for_each(|element| { item.element = Some(element); });
if item.name_aegis == "Fire_Brand" {
println!("Fire_Brand!!! {:?}", item.element);
}
if !complex_script {
item.script_compilation = None;
count_script_executed += 1;
Expand Down

0 comments on commit fd83e43

Please sign in to comment.