There is a missing striping of format tags in the Relay_GUILD.php module (upstream version 0.4.0) when relaying to IRC. Simple fix:
--- BeBot_v0.4.0/modules/Relay_GUILD.php 2007-07-20 20:27:45.000000000 +0200
+++ FECom/modules/Relay_GUILD.php 2007-07-25 15:19:09.000000000 +0200
@@ -199,7 +199,7 @@
{
if ($this -> bot -> settings -> get("irc", "connected"))
{
- $this -> bot -> irc -> send_irc("", "", $msg);
+ $this -> bot -> irc -> send_irc("", "", $this -> bot -> irc -> strip_formatting($msg));
}
}
}