Skip to content

Commit

Permalink
GHA test
Browse files Browse the repository at this point in the history
  • Loading branch information
Kurochi51 committed Sep 15, 2023
1 parent aefc649 commit ac8c3b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions TickTracker/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ public sealed class Plugin : IDalamudPlugin
private unsafe delegate void ReceiveSecondaryActorUpdateDelegate(uint objectId, byte* packetData, byte unkByte);

[Signature("40 55 53 57 41 54 41 55 41 56 41 57 48 8D AC 24 ?? ?? ?? ?? 48 81 EC ?? ?? ?? ?? 48 8B 05 ?? ?? ?? ?? 48 33 C4 48 89 45 70", DetourName = nameof(ReceiveActionEffect))]
private readonly Hook<ReceiveActionEffectDelegate>? receiveActionEffectHook;
private readonly Hook<ReceiveActionEffectDelegate>? receiveActionEffectHook = null!;

[Signature("48 89 5C 24 ?? 48 89 6C 24 ?? 56 48 83 EC 20 83 3D ?? ?? ?? ?? ?? 41 0F B6 E8 48 8B DA 8B F1 0F 84 ?? ?? ?? ?? 48 89 7C 24 ??", DetourName = nameof(PrimaryActorTickUpdate))]
private readonly Hook<ReceivePrimaryActorUpdateDelegate>? receivePrimaryActorUpdateHook;
private readonly Hook<ReceivePrimaryActorUpdateDelegate>? receivePrimaryActorUpdateHook = null!;

[Signature("48 8B C4 55 57 41 56 48 83 EC 60", DetourName = nameof(SecondaryActorTickUpdate))]
private readonly Hook<ReceiveSecondaryActorUpdateDelegate>? receiveSecondaryActorUpdateHook;
private readonly Hook<ReceiveSecondaryActorUpdateDelegate>? receiveSecondaryActorUpdateHook = null!;

private readonly Utilities utilities;
private readonly DalamudPluginInterface pluginInterface;
Expand Down

0 comments on commit ac8c3b7

Please sign in to comment.