From 67a49f3b054958fd1a8f7547af73dfef9f520fa2 Mon Sep 17 00:00:00 2001 From: Anna Date: Mon, 6 Dec 2021 17:35:41 -0500 Subject: [PATCH] chore: remove wildcards --- Globetrotter/TreasureMaps.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }