diff --git a/assignments/src/MV3500Cohort2024JulySeptember/homework3/Smith/ExampleSimulationProgram.java b/assignments/src/MV3500Cohort2024JulySeptember/homework3/Smith/ExampleSimulationProgram.java index e40377628f28a508d1a1d2f8ab183760846f1367..26419da18ec013dfd0790866944c8d64b44c0020 100644 --- a/assignments/src/MV3500Cohort2024JulySeptember/homework3/Smith/ExampleSimulationProgram.java +++ b/assignments/src/MV3500Cohort2024JulySeptember/homework3/Smith/ExampleSimulationProgram.java @@ -208,7 +208,7 @@ public class ExampleSimulationProgram { // Set relevant details in the FirePdu firePdu.setFiringEntityID(new EntityID().setEntityID(player.equals("Player 1") ? 1 : 2)); firePdu.setTargetEntityID(new EntityID().setEntityID(player.equals("Player 1") ? 1 : 2)); - Vector3Double fireLoc = new Vector3Double(); + Vector3Double fireLoc = new Vector3Double(); //annoying that there isn't a Vector3Double(x, y, z) constructor... fireLoc.setX(x); fireLoc.setY(y); fireLoc.setZ(0.0);