From c7b8ad390c1e4525fdbaba89b773e18d74a2e280 Mon Sep 17 00:00:00 2001 From: Lucia Ceionia Date: Wed, 30 Jul 2025 17:52:12 -0500 Subject: [PATCH] quick fix so blank messages whatever --- Godot/mods/Lucy.LucysTools/main.gd | 1 + 1 file changed, 1 insertion(+) diff --git a/Godot/mods/Lucy.LucysTools/main.gd b/Godot/mods/Lucy.LucysTools/main.gd index 655ba20..6754295 100644 --- a/Godot/mods/Lucy.LucysTools/main.gd +++ b/Godot/mods/Lucy.LucysTools/main.gd @@ -71,6 +71,7 @@ func get_user_color() -> Color: # we just take over - replicate as # much as i can be bothered to func process_message(text: String, local: bool, player, playerhud): + if text.replace(" ","") == "": return if DEBUG: var thing = {"text":text,"local":local,"player":player,"playerhud":playerhud,"custom_name":custom_name} print("[LUCYSTOOLS process_message] ", thing)