diff --git a/Dalamud/Memory/MemoryHelper.cs b/Dalamud/Memory/MemoryHelper.cs index a2fddd5fc..5563f0599 100644 --- a/Dalamud/Memory/MemoryHelper.cs +++ b/Dalamud/Memory/MemoryHelper.cs @@ -364,7 +364,7 @@ namespace Dalamud.Memory /// The memory address to read from. /// The item to write to the address. public static void Write(IntPtr memoryAddress, T item) where T : unmanaged - => Write(memoryAddress, item); + => Write(memoryAddress, item, false); /// /// Writes a generic type to a specified memory address.