Skip to content

Commit

Permalink
Remove DisableCombatAimCorrection flag from traps
Browse files Browse the repository at this point in the history
  • Loading branch information
radj307 committed Sep 1, 2021
1 parent 4ebe748 commit 5a817d2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Another_Archery_Patcher/ConfigHelpers/StatsPreset.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
namespace Another_Archery_Patcher.ConfigHelpers
{
using static SoundLevel;
using static Flag.Type;
using static Flag.State;
public class StatsPreset
{
[MaintainOrder]
Expand Down Expand Up @@ -65,15 +67,17 @@ public class StatsPreset
0.07f,
0.2f,
Normal,
new List<string>{ "TrapDart" }
new List<string>{ "TrapDart" },
new List<FlagTweak>(){ new (DisableCombatAimCorrection, Remove) }
),
new Stats("Ballista Traps",
3,
6200.0f,
0.69f,
75.0f,
VeryLoud,
new List<string>{ "TrapDweBallista" }
new List<string>{ "TrapDweBallista" },
new List<FlagTweak>(){ new (DisableCombatAimCorrection, Remove) }
)
};

Expand Down

0 comments on commit 5a817d2

Please sign in to comment.