Compare commits

...

2 Commits

Author SHA1 Message Date
Anna b5a1b5a8e2
chore: bump to 1.2.6 2022-04-14 20:15:05 -04:00
Anna 35247c1a28
fix: update for 6.1 2022-04-14 20:14:10 -04:00
2 changed files with 5 additions and 5 deletions

View File

@ -25,7 +25,7 @@ namespace Tourist {
public GameFunctions(Plugin plugin) {
this.Plugin = plugin;
var vistaUnlockedPtr = this.Plugin.SigScanner.ScanText("E8 ?? ?? ?? ?? E9 ?? ?? ?? ?? 41 8B CD E8");
var vistaUnlockedPtr = this.Plugin.SigScanner.ScanText("E8 ?? ?? ?? ?? E9 ?? ?? ?? ?? 8B CE E8 ?? ?? ?? ?? E9");
this.VistaUnlockedHook = new Hook<VistaUnlockedDelegate>(vistaUnlockedPtr, this.OnVistaUnlock);
this.VistaUnlockedHook.Enable();

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.2.5</Version>
<Version>1.2.6</Version>
<TargetFramework>net5-windows</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
@ -34,12 +34,12 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="DalamudPackager" Version="2.1.5"/>
<PackageReference Include="FFXIVWeather.Lumina" Version="2.0.0"/>
<PackageReference Include="DalamudPackager" Version="2.1.6" />
<PackageReference Include="FFXIVWeather.Lumina" Version="2.0.0" />
</ItemGroup>
<ItemGroup>
<Content Include="..\icon.png" Private="false" Link="images/icon.png" CopyToOutputDirectory="PreserveNewest"/>
<Content Include="..\icon.png" Private="false" Link="images/icon.png" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>