implemented visibility, so pegs can only scope out as far as they can see.

This commit is contained in:
2026-06-30 18:24:11 -04:00
parent c8e81e4f48
commit b1625b15a0
8 changed files with 53 additions and 32 deletions
+1
View File
@@ -7,5 +7,6 @@ public partial class Archer : HostilePeg
{
base._Ready();
_stamina = 2;
_visibility = 4;
}
}
+1
View File
@@ -7,5 +7,6 @@ public partial class Infantry : HostilePeg
{
base._Ready();
_stamina = 3;
_visibility = 3;
}
}