From c62fa0b4d5f27a9137dc2e4832d4fec5a87f28d8 Mon Sep 17 00:00:00 2001 From: Mark Date: Sun, 14 Jan 2024 11:11:38 -0800 Subject: [PATCH] Tweaked test ship positioning --- crates/galactica/src/game.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/galactica/src/game.rs b/crates/galactica/src/game.rs index f43086e..e3e9d33 100644 --- a/crates/galactica/src/game.rs +++ b/crates/galactica/src/game.rs @@ -66,7 +66,7 @@ impl<'a> Game { ShipHandle { index: 0 }, FactionHandle { index: 1 }, ShipPersonality::Point, - Point2::new(400.0, 0.0), + Point2::new(1000.0, 0.0), ); let s = systemsim.get_ship_mut(&a).unwrap(); @@ -79,7 +79,7 @@ impl<'a> Game { ShipHandle { index: 0 }, FactionHandle { index: 0 }, ShipPersonality::Dummy, - Point2::new(0.0, 4000.0), + Point2::new(200.0, 2000.0), ); let s = systemsim.get_ship_mut(&a).unwrap();