From 92fe0627027b1ea386298e097ef0f1524d529adb Mon Sep 17 00:00:00 2001 From: Anna Clemens Date: Sat, 16 Apr 2022 20:42:25 -0400 Subject: [PATCH] fix: update offset --- Glamaholic/GameFunctions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Glamaholic/GameFunctions.cs b/Glamaholic/GameFunctions.cs index 0d48042..9ed8da3 100755 --- a/Glamaholic/GameFunctions.cs +++ b/Glamaholic/GameFunctions.cs @@ -167,9 +167,9 @@ namespace Glamaholic { var plate = new Dictionary(); foreach (var slot in (PlateSlot[]) Enum.GetValues(typeof(PlateSlot))) { - // Updated: 6.0 + // Updated: 6.1 // from SetGlamourPlateSlot - var item = editorInfo + 44 * (int) slot + 7956; + var item = editorInfo + 44 * (int) slot + 10596; var itemId = *(uint*) item; var stainId = *(byte*) (item + 24);