Compare commits

...

2 Commits

Author SHA1 Message Date
Anna e718c998e1
chore: bump version to 1.9.5 2022-04-16 20:44:02 -04:00
Anna 92fe062702
fix: update offset 2022-04-16 20:42:25 -04:00
2 changed files with 3 additions and 3 deletions

View File

@ -167,9 +167,9 @@ namespace Glamaholic {
var plate = new Dictionary<PlateSlot, SavedGlamourItem>(); var plate = new Dictionary<PlateSlot, SavedGlamourItem>();
foreach (var slot in (PlateSlot[]) Enum.GetValues(typeof(PlateSlot))) { foreach (var slot in (PlateSlot[]) Enum.GetValues(typeof(PlateSlot))) {
// Updated: 6.0 // Updated: 6.1
// from SetGlamourPlateSlot // from SetGlamourPlateSlot
var item = editorInfo + 44 * (int) slot + 7956; var item = editorInfo + 44 * (int) slot + 10596;
var itemId = *(uint*) item; var itemId = *(uint*) item;
var stainId = *(byte*) (item + 24); var stainId = *(byte*) (item + 24);

View File

@ -2,7 +2,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFramework>net5.0-windows</TargetFramework> <TargetFramework>net5.0-windows</TargetFramework>
<Version>1.9.4</Version> <Version>1.9.5</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<ProduceReferenceAssembly>false</ProduceReferenceAssembly> <ProduceReferenceAssembly>false</ProduceReferenceAssembly>