Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
fix: poslock.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed Mar 2, 2024
1 parent e6e4cf0 commit 795eb78
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Resources/RotationSolverRecord.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"ClickingCount": 93891,
"ClickingCount": 93996,
"SayingHelloCount": 139,
"SaidUsers": []
}
2 changes: 1 addition & 1 deletion RotationSolver.Basic/Configuration/Configs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,7 @@ public const string

public int ActionSequencerIndex { get; set; }

[UI("The modifier key to unlock the movement temporary", Description = "LB is for gamepad player", Parent = nameof(PoslockCasting))]
[UI("The modifier key to unlock the movement temporary", Description = "RB is for gamepad player", Parent = nameof(PoslockCasting))]
public ConsoleModifiers PoslockModifier { get; set; }

[Range(0, 10000, ConfigUnitType.None, 200)]
Expand Down
2 changes: 1 addition & 1 deletion RotationSolver.Basic/DataCenter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public static MajorConditionSet RightSet
//Key cancel.
|| Svc.KeyState[Service.Config.PoslockModifier.ToVirtual()]
//Gamepad cancel.
|| Svc.GamepadState.Raw(Dalamud.Game.ClientState.GamePad.GamepadButtons.L1) >= 0.5f;
|| Svc.GamepadState.Raw(Dalamud.Game.ClientState.GamePad.GamepadButtons.R1) >= 0.5f;

internal static DateTime EffectTime { private get; set; } = DateTime.Now;
internal static DateTime EffectEndTime { private get; set; } = DateTime.Now;
Expand Down
2 changes: 1 addition & 1 deletion RotationSolver/Data/UiString.cs
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ internal enum UiString
[Description("Delay its turning.")]
ActionSequencer_Offset_Description,

[Description("Enought Level")]
[Description("Enough Level")]
ActionConditionType_EnoughLevel,

[Description("Time Offset")]
Expand Down
1 change: 0 additions & 1 deletion RotationSolver/UI/RotationConfigWindow_Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
using RotationSolver.Helpers;
using RotationSolver.Localization;
using RotationSolver.UI.SearchableSettings;
using RotationSolver.Updaters;

namespace RotationSolver.UI;

Expand Down

0 comments on commit 795eb78

Please sign in to comment.