Skip to content

Commit

Permalink
Fix to final test
Browse files Browse the repository at this point in the history
  • Loading branch information
samsmithnz committed Jul 24, 2021
1 parent ea1237b commit 8d0f57a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Battle.Tests/Scenarios/ScenarioTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ public void JeffMovesAndFOVUpdatesTest()
fred.FOVMap = MapUtility.InitializeMap(10, 1, 10);
string[,,] inverseMap = MapUtility.InitializeMap(10, 1, 10);
//Set the player position to visible
inverseMap[(int)fred.Location.X, (int)fred.Location.Y, (int)fred.Location.Z] = FieldOfView.FOV_Visible;
inverseMap[(int)fred.Location.X, (int)fred.Location.Y, (int)fred.Location.Z] = "P";
//Set the map to all of the visible positions
foreach (Vector3 item in fov)
{
Expand Down

0 comments on commit 8d0f57a

Please sign in to comment.