From 865ac5b979c4c9da5b42bee1cf3c79a6c03090dc Mon Sep 17 00:00:00 2001 From: KubaPro010 Date: Wed, 22 Apr 2026 21:18:40 +0200 Subject: [PATCH] fix? --- scripts/98-uecp.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/98-uecp.lua b/scripts/98-uecp.lua index 3107132..e14ce27 100644 --- a/scripts/98-uecp.lua +++ b/scripts/98-uecp.lua @@ -220,7 +220,7 @@ mec_handlers[0x2D] = function (data) -- Manufacturer local mel = string.byte(data, 2) local designation = string.sub(data, 3, 4) - if designation == "95" and mel > 2 then + if string.byte(designation, 1) == 0x39 and string.byte(designation, 2) == 0x35 and mel > 2 then local data = string.sub(data, 5, 4+mel) pcall(data_handle, data) end