fix: temp support for moogle maps

This commit is contained in:
Anna 2021-10-23 20:33:06 -04:00
parent d36ff5fb62
commit e40cdc1926
2 changed files with 7 additions and 3 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.2.1</Version>
<Version>1.2.2</Version>
<TargetFramework>net5-windows</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
@ -30,7 +30,7 @@
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="DalamudPackager" Version="2.1.2"/>
<PackageReference Include="DalamudPackager" Version="2.1.4"/>
</ItemGroup>
<ItemGroup>
<Content Include="..\icon.png" Link="images/icon.png" CopyToOutputDirectory="PreserveNewest" Visible="false"/>

View File

@ -39,7 +39,11 @@ namespace Globetrotter {
continue;
}
mapToRow[opened.RowId] = unopened.AdditionalData;
var additionalData = opened.RowId == 2003075
? 18 // ostensibly/presumably special
: unopened.AdditionalData;
mapToRow[opened.RowId] = additionalData;
}
_mapToRow = mapToRow;