Skip to content
Snippets Groups Projects
Commit 3ffa3299 authored by KReynolds's avatar KReynolds
Browse files

Fixed an error in the friendly packet

parent c03c7c1f
No related branches found
No related tags found
No related merge requests found
......@@ -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() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment