diff --git a/assets/voxygen/element/icons/chat/broadcast_offline.png b/assets/voxygen/element/icons/chat/broadcast_offline.png new file mode 100644 index 0000000000..35adc8c843 Binary files /dev/null and b/assets/voxygen/element/icons/chat/broadcast_offline.png differ diff --git a/assets/voxygen/element/icons/chat/broadcast_small.png b/assets/voxygen/element/icons/chat/broadcast_small.png index ac63b457f3..ef61dc1219 100644 Binary files a/assets/voxygen/element/icons/chat/broadcast_small.png and b/assets/voxygen/element/icons/chat/broadcast_small.png differ diff --git a/assets/voxygen/element/icons/chat/faction.png b/assets/voxygen/element/icons/chat/faction.png index d1a8364784..de482bbe60 100644 Binary files a/assets/voxygen/element/icons/chat/faction.png and b/assets/voxygen/element/icons/chat/faction.png differ diff --git a/assets/voxygen/element/icons/chat/faction_small.png b/assets/voxygen/element/icons/chat/faction_small.png index 81ab6d432f..4e214fe4d2 100644 Binary files a/assets/voxygen/element/icons/chat/faction_small.png and b/assets/voxygen/element/icons/chat/faction_small.png differ diff --git a/assets/voxygen/element/icons/chat/group.png b/assets/voxygen/element/icons/chat/group.png index 0c2c7f8644..dd398bca68 100644 Binary files a/assets/voxygen/element/icons/chat/group.png and b/assets/voxygen/element/icons/chat/group.png differ diff --git a/assets/voxygen/element/icons/chat/group_small.png b/assets/voxygen/element/icons/chat/group_small.png index 9ea5338033..35f3859b60 100644 Binary files a/assets/voxygen/element/icons/chat/group_small.png and b/assets/voxygen/element/icons/chat/group_small.png differ diff --git a/assets/voxygen/element/icons/chat/kill_small.png b/assets/voxygen/element/icons/chat/kill_small.png index fe8efd6696..82ac89aa00 100644 Binary files a/assets/voxygen/element/icons/chat/kill_small.png and b/assets/voxygen/element/icons/chat/kill_small.png differ diff --git a/assets/voxygen/element/icons/chat/private_small.png b/assets/voxygen/element/icons/chat/private_small.png index e973236f4e..9624791db9 100644 Binary files a/assets/voxygen/element/icons/chat/private_small.png and b/assets/voxygen/element/icons/chat/private_small.png differ diff --git a/assets/voxygen/element/icons/chat/say.png b/assets/voxygen/element/icons/chat/say.png index f46e6f62e0..1f53da9495 100644 Binary files a/assets/voxygen/element/icons/chat/say.png and b/assets/voxygen/element/icons/chat/say.png differ diff --git a/assets/voxygen/element/icons/chat/say_small.png b/assets/voxygen/element/icons/chat/say_small.png index b00c56c1ac..2fcef08862 100644 Binary files a/assets/voxygen/element/icons/chat/say_small.png and b/assets/voxygen/element/icons/chat/say_small.png differ diff --git a/assets/voxygen/element/icons/chat/tell.png b/assets/voxygen/element/icons/chat/tell.png index b75084fb42..682d70ad38 100644 Binary files a/assets/voxygen/element/icons/chat/tell.png and b/assets/voxygen/element/icons/chat/tell.png differ diff --git a/assets/voxygen/element/icons/chat/tell_small.png b/assets/voxygen/element/icons/chat/tell_small.png index 4e07ca928a..76e263409b 100644 Binary files a/assets/voxygen/element/icons/chat/tell_small.png and b/assets/voxygen/element/icons/chat/tell_small.png differ diff --git a/assets/voxygen/element/icons/chat/world.png b/assets/voxygen/element/icons/chat/world.png index c2bf62cab8..006c1d7b0b 100644 Binary files a/assets/voxygen/element/icons/chat/world.png and b/assets/voxygen/element/icons/chat/world.png differ diff --git a/assets/voxygen/element/icons/chat/world_small.png b/assets/voxygen/element/icons/chat/world_small.png index e7465acf52..a208fd3475 100644 Binary files a/assets/voxygen/element/icons/chat/world_small.png and b/assets/voxygen/element/icons/chat/world_small.png differ diff --git a/common/src/comp/chat.rs b/common/src/comp/chat.rs index 383de9e0fa..bf4b0539ac 100644 --- a/common/src/comp/chat.rs +++ b/common/src/comp/chat.rs @@ -108,12 +108,12 @@ impl ChatMsg { ChatType::Broadcast => SpeechBubbleType::None, ChatType::Private => SpeechBubbleType::None, ChatType::Kill => SpeechBubbleType::None, - ChatType::Tell(_u, _) => SpeechBubbleType::None, - ChatType::Say(_u) => SpeechBubbleType::None, - ChatType::Group(_u, _s) => SpeechBubbleType::None, - ChatType::Faction(_u, _s) => SpeechBubbleType::None, - ChatType::Region(_u) => SpeechBubbleType::None, - ChatType::World(_u) => SpeechBubbleType::None, + ChatType::Tell(_u, _) => SpeechBubbleType::Tell, + ChatType::Say(_u) => SpeechBubbleType::Say, + ChatType::Group(_u, _s) => SpeechBubbleType::Group, + ChatType::Faction(_u, _s) => SpeechBubbleType::Faction, + ChatType::Region(_u) => SpeechBubbleType::Region, + ChatType::World(_u) => SpeechBubbleType::World, ChatType::Npc(_u, _r) => SpeechBubbleType::None, } } diff --git a/voxygen/src/hud/overhead.rs b/voxygen/src/hud/overhead.rs index cd6c11e28c..0d05cfc2a3 100644 --- a/voxygen/src/hud/overhead.rs +++ b/voxygen/src/hud/overhead.rs @@ -59,7 +59,7 @@ pub struct Overhead<'a> { voxygen_i18n: &'a std::sync::Arc, imgs: &'a Imgs, fonts: &'a ConrodVoxygenFonts, - bubble_type: &SpeechBubbleType, + bubble_type: &'a SpeechBubbleType, #[conrod(common_builder)] common: widget::CommonBuilder, }