CharacterSpecific Templatesystems #36

Merged
sebastian merged 31 commits from template-systems into main 2024-04-14 13:45:04 +02:00
Showing only changes of commit 877d90171f - Show all commits

View File

@ -122,6 +122,8 @@ export class SimpleStateEditorComponent implements OnInit{
return state.conditions return state.conditions
} else if(state instanceof SimpleTemplateState){ } else if(state instanceof SimpleTemplateState){
return (state as SimpleTemplateState).conditionMap.get(this.templateElement)! return (state as SimpleTemplateState).conditionMap.get(this.templateElement)!
} else {
return [];
} }
} }
} }