Skip to content

Commit e15d6f1

Browse files
committed
Fixed animations not showing up correctly for entities that inherit from top down entities
fixes #1716
1 parent bf19354 commit e15d6f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FRBDK/Glue/TopDownPlugin/Controllers/MainController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ public void UpdateTo(EntitySave currentEntitySave)
368368
UpdateViewModelTo(currentEntitySave);
369369

370370

371-
if(IsTopDown(currentEntitySave))
371+
if(IsTopDown(currentEntitySave) || GetIfInheritsFromTopDown(currentEntitySave))
372372
{
373373
if (TopDownPlugin.Controllers.AnimationController.TopDownViewModel == null)
374374
{

0 commit comments

Comments
 (0)