diff --git a/OpenRA.Mods.RA/Activities/Teleport.cs b/OpenRA.Mods.RA/Activities/Teleport.cs index 3a1547c722..7e200dd5f1 100644 --- a/OpenRA.Mods.RA/Activities/Teleport.cs +++ b/OpenRA.Mods.RA/Activities/Teleport.cs @@ -93,7 +93,7 @@ namespace OpenRA.Mods.RA.Activities if (teleporter != null && self != teleporter && !teleporter.Disposed) { var building = teleporter.TraitOrDefault(); - if (building != null) + if (building != null && building.DefaultAnimation.HasSequence("active")) building.PlayCustomAnimation(teleporter, "active"); }