From 5822fbee71ec2e04edabb843d8cc996df95450d3 Mon Sep 17 00:00:00 2001 From: lifegpc Date: Sat, 17 Jan 2026 21:28:05 +0800 Subject: [PATCH] . --- src/scripts/entis_gls/csx/v1/img.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/scripts/entis_gls/csx/v1/img.rs b/src/scripts/entis_gls/csx/v1/img.rs index 3836956..690543d 100644 --- a/src/scripts/entis_gls/csx/v1/img.rs +++ b/src/scripts/entis_gls/csx/v1/img.rs @@ -237,6 +237,9 @@ impl ECSExecutionImage { cmd.addr )); } + if string_stack[0].starts_with("@") { + continue; + } message.push_str(string_stack[0].as_str()); } } else if num_args == 2 { @@ -324,10 +327,6 @@ impl ECSExecutionImage { )); } if string_stack[0].starts_with("@") { - println!( - "Skipping message with special tag at {:08X}: {}", - cmd.addr, string_stack[0] - ); continue; } message.push_str(string_stack[0].as_str());