Skip to content

Commit

Permalink
Fix offet to hover target pointer.
Browse files Browse the repository at this point in the history
Bump version to 1.6.6.1
  • Loading branch information
xtuaok committed Nov 17, 2015
1 parent 2540562 commit fa14a4b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion EnmityPlugin/FFXIVMemory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ public Combatant GetFocusCombatant()
public Combatant GetHoverCombatant()
{
Combatant self = null;
int offset = _mode == FFXIVClientMode.FFXIV_64 ? 0x30 : 0x18;
int offset = _mode == FFXIVClientMode.FFXIV_64 ? 0x38 : 0x1B;
IntPtr address = (IntPtr)GetUInt32(targetAddress + offset);
if (address.ToInt64() > 0)
{
Expand Down
4 changes: 2 additions & 2 deletions EnmityPlugin/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を
// 既定値にすることができます:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.6.6.0")]
[assembly: AssemblyFileVersion("1.6.6.0")]
[assembly: AssemblyVersion("1.6.6.1")]
[assembly: AssemblyFileVersion("1.6.6.1")]

0 comments on commit fa14a4b

Please sign in to comment.