|
@@ -345,17 +345,18 @@ namespace ET
|
|
|
if (msg.StartsWith("item:"))
|
|
|
{
|
|
|
EventSystem.Instance.Publish(ShowUIAnimation.Clone(ShowUIAnimation.AniType.Gift, System.Convert.ToInt32(msg[5..])));
|
|
|
- return;
|
|
|
}
|
|
|
else if(msg.StartsWith("bosscome:"))
|
|
|
{
|
|
|
EventSystem.Instance.Publish(ShowUIAnimation.Clone(ShowUIAnimation.AniType.Monster, System.Convert.ToInt32(msg[9..])));
|
|
|
- return;
|
|
|
}
|
|
|
else if(msg.StartsWith("towerhp"))
|
|
|
{
|
|
|
EventSystem.Instance.Publish(ShowUIAnimation.Clone(ShowUIAnimation.AniType.Tower, 0));
|
|
|
- return;
|
|
|
+ }
|
|
|
+ else if(msg == "like_energy")
|
|
|
+ {
|
|
|
+ EventSystem.Instance.Publish(ShowUIAnimation.Clone(ShowUIAnimation.AniType.LikeEnergy, 0));
|
|
|
}
|
|
|
});
|
|
|
/*BubbleTalkEvent
|