diff --git a/midway/src/main.rs b/midway/src/main.rs index f8c6131..2b288f6 100644 --- a/midway/src/main.rs +++ b/midway/src/main.rs @@ -342,7 +342,7 @@ fn main() { mobile = false; kraken_targets.push(name.clone()); } - if distance < ship.stats.gun_range { + if !ship.submerged && distance < ship.stats.gun_range { match ship.shoot(kraken) { ShootingState::Sunk(location, damage) | ShootingState::Hit(location, damage) => { let size = damage.powf(1.0 / 3.0) * 3.0; diff --git a/resources/UBoat.png b/resources/UBoat.png index 66818af..4b03d6e 100644 Binary files a/resources/UBoat.png and b/resources/UBoat.png differ