diff --git a/PostNamazu/Actions/NormalCommand.cs b/PostNamazu/Actions/NormalCommand.cs index 4ee5289..2050e64 100644 --- a/PostNamazu/Actions/NormalCommand.cs +++ b/PostNamazu/Actions/NormalCommand.cs @@ -16,14 +16,7 @@ internal class NormalCommand : NamazuModule public override void GetOffsets() { base.GetOffsets(); - try // 7.1 - { - ProcessChatBoxPtr = SigScanner.ScanText("48 89 5C 24 ?? 48 89 74 24 ?? 57 48 83 EC 20 48 8B F2 48 8B F9 45 84 C9"); - } - catch // 7.0 - { - ProcessChatBoxPtr = SigScanner.ScanText("48 89 5C 24 ?? 57 48 83 EC 20 48 8B FA 48 8B D9 45 84 C9", nameof(ProcessChatBoxPtr)); - } + ProcessChatBoxPtr = SigScanner.ScanText("48 89 5C 24 ?? 48 89 74 24 ?? 57 48 83 EC 20 48 8B F2 48 8B F9 45 84 C9"); GetUiModulePtr = SigScanner.ScanText("E8 * * * * 80 7B 1D 01", nameof(GetUiModulePtr)); }