From 0abc5c369452ed63b20f986d8e17d8761c8d14fd Mon Sep 17 00:00:00 2001 From: AkmalFairuz Date: Fri, 20 Jun 2025 19:56:19 +0700 Subject: [PATCH] Fix item mapping logic to correctly handle deleteDebugStick parameter --- legacyver/v818.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legacyver/v818.go b/legacyver/v818.go index 6c1849f..e6f3b32 100644 --- a/legacyver/v818.go +++ b/legacyver/v818.go @@ -25,7 +25,7 @@ var ( func itemMappingLatest(deleteDebugStick bool) mapping.Item { if deleteDebugStick { - return itemMappingLatestWithDebugStick + return itemMappingLatestWithoutDebugStick } - return itemMappingLatestWithoutDebugStick + return itemMappingLatestWithDebugStick }