Divide, not multiply.

This commit is contained in:
Nolan Darilek 2022-05-18 10:27:42 -05:00
parent 615af720cb
commit 34b10aaca4

View File

@ -250,7 +250,7 @@ fn sound_icon_exploration_focus_removed(
if let Ok(children) = children.get(entity) {
for child in children.iter() {
if let Ok(mut icon) = query.get_mut(*child) {
icon.gain *= ICON_GAIN;
icon.gain /= ICON_GAIN;
}
}
}