Bladeren bron

Merge branch 'master' of 192.168.0.254:BattleSever/WSHCommon

meijun 3 jaren geleden
bovenliggende
commit
fdd8e027ba
1 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  1. 2 2
      Common/CommonAI/ZoneClient/ZoneObject.Spell.cs

+ 2 - 2
Common/CommonAI/ZoneClient/ZoneObject.Spell.cs

@@ -130,7 +130,7 @@ namespace CommonAI.ZoneClient
             float radius = 0;
             if (mAddEvent != null)
             {
-                if (mAddEvent.LaunchData.FromUnitBody && (Sender is ZoneUnit))
+                if (mAddEvent.LaunchData.FromUnitBody && Sender != null && (Sender is ZoneUnit))
                 {
                     radius = (Sender as ZoneUnit).Info.LaunchSpellRadius;
                 }
@@ -358,7 +358,7 @@ namespace CommonAI.ZoneClient
                         {
                             MathVector.movePolar(mLocalPos, mStartDirection, speed_distance);
                         }
-                        else if (PassTimeMS > Info.BoomerangFlyTime + Info.BoomerangHangtime)
+                        else if (Sender != null && PassTimeMS > Info.BoomerangFlyTime + Info.BoomerangHangtime)
                         {
                             PreFlyTo(Sender.X, Sender.Y, mSpeed * 1.4f, intervalMS);
                         }