Make stuff not apply in Aesthetician in general.

This commit is contained in:
Ottermandias 2023-08-22 15:48:55 +02:00
parent 89b1a22800
commit e64e94f78d
6 changed files with 37 additions and 11 deletions

View file

@ -51,7 +51,7 @@ public unsafe class UpdateSlotService : IDisposable
var slot = slotIdx.ToEquipSlot();
var returnValue = ulong.MaxValue;
SlotUpdatingEvent.Invoke(drawObject, slot, ref *data, ref returnValue);
Glamourer.Log.Excessive($"[FlagSlotForUpdate] Called with 0x{drawObject:X} for slot {slot} with {*data} ({returnValue}).");
Glamourer.Log.Excessive($"[FlagSlotForUpdate] Called with 0x{drawObject:X} for slot {slot} with {*data} ({returnValue:X}).");
return returnValue == ulong.MaxValue ? _flagSlotForUpdateHook.Original(drawObject, slotIdx, data) : returnValue;
}