Merge pull request #10179 from davidgilkaufman/rampNestedDressup

[Path] Make RampDressup accept other dressups as its base operation
This commit is contained in:
sliptonic
2023-08-21 14:08:57 -05:00
committed by GitHub

View File

@@ -203,7 +203,7 @@ class ObjectDressup:
if not obj.Base.Path:
return
if not obj.Base.Active:
if hasattr(obj.Base, 'Active') and not obj.Base.Active:
path = Path.Path("(inactive operation)")
obj.Path = path
return