From 3ffa3299129f5008c9a6c398b2bbc2776b81c7a8 Mon Sep 17 00:00:00 2001 From: KReynolds <runem@10.0.0.35> Date: Mon, 13 Sep 2021 00:05:06 -0700 Subject: [PATCH] Fixed an error in the friendly packet --- ...icFirewallSimulationProgramAllenReynolds.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/assignments/src/MV3500Cohort2021JulySeptember/projects/AllenReynolds/KineticFirewallSimulationProgramAllenReynolds.java b/assignments/src/MV3500Cohort2021JulySeptember/projects/AllenReynolds/KineticFirewallSimulationProgramAllenReynolds.java index 93f0aa75bc..3b9ca2ca06 100644 --- a/assignments/src/MV3500Cohort2021JulySeptember/projects/AllenReynolds/KineticFirewallSimulationProgramAllenReynolds.java +++ b/assignments/src/MV3500Cohort2021JulySeptember/projects/AllenReynolds/KineticFirewallSimulationProgramAllenReynolds.java @@ -82,14 +82,14 @@ public class KineticFirewallSimulationProgramAllenReynolds { } private EntityType createFriendPacketType() { - EntityType FNFireWallType = new EntityType(); - FNFireWallType.setEntityKind(EntityKind.PLATFORM); - FNFireWallType.setDomain(Domain.inst(PlatformDomain.OTHER)); - FNFireWallType.setCountry(Country.JAPAN_JPN); - FNFireWallType.setCategory(3); - FNFireWallType.setSubCategory(1); - FNFireWallType.setSpecific(1); - return FNFireWallType; + EntityType FNPacketType = new EntityType(); + FNPacketType.setEntityKind(EntityKind.PLATFORM); + FNPacketType.setDomain(Domain.inst(PlatformDomain.OTHER)); + FNPacketType.setCountry(Country.JAPAN_JPN); + FNPacketType.setCategory(3); + FNPacketType.setSubCategory(1); + FNPacketType.setSpecific(1); + return FNPacketType; } private MunitionDescriptor createTraceroute() { -- GitLab