Browse Source

【BUG】MMO-21156: 取消跟随标记后,需要检查玩家是否正在跟随状态中

meijun 3 years ago
parent
commit
8e7b588367
1 changed files with 5 additions and 0 deletions
  1. 5 0
      XmdsCommonServer/Plugin/Team/XmdsTeamVirtual.cs

+ 5 - 0
XmdsCommonServer/Plugin/Team/XmdsTeamVirtual.cs

@@ -79,6 +79,11 @@ public class XmdsTeamVirtual
             {
                 player.canFollowTeam = false;
                 this.mTeamFollow.removeFollowMember(player);
+
+                if(player.CurrentState is StateFollowLeader)
+                {
+                    player.doSomething();
+                }
                 break;
             }
         }