diff --git a/Globetrotter/TreasureMaps.cs b/Globetrotter/TreasureMaps.cs index 0b4cf6a..20ce0e2 100644 --- a/Globetrotter/TreasureMaps.cs +++ b/Globetrotter/TreasureMaps.cs @@ -65,7 +65,7 @@ namespace Globetrotter { this._acsHook = new Hook(acsPtr, this.OnACS); this._acsHook.Enable(); - var showMapPtr = this.Plugin.SigScanner.ScanText("E8 ?? ?? ?? ?? 40 84 FF 0F 85 ?? ?? ?? ?? 48 8B 0D ?? ?? ?? ??"); + var showMapPtr = this.Plugin.SigScanner.ScanText("E8 ?? ?? ?? ?? 40 84 FF 0F 85 ?? ?? ?? ?? 48 8B 0D"); this._showMapHook = new Hook(showMapPtr, this.OnShowMap); this._showMapHook.Enable(); }