add parse ascii

This commit is contained in:
2026-04-30 19:49:57 +02:00
parent c3f3b31243
commit a4b968c457
2 changed files with 9 additions and 9 deletions
+1 -2
View File
@@ -291,8 +291,7 @@ mec_handlers[0x2D] = function (data)
local mel = string.byte(data, 2)
local designation = string.sub(data, 3, 4)
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(hooks.data_handle, data)
pcall(hooks.parse_ascii, string.sub(data, 5, 4+mel))
end
return 2+mel
end