Skip to content

Commit

Permalink
Filter system event definitions from content pack generation (#21206)
Browse files Browse the repository at this point in the history
* filters system event definitions from content pack generation

* adding changelog
  • Loading branch information
janheise authored Dec 19, 2024
1 parent 41fb93c commit 8aafad6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions changelog/unreleased/pr-21206.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
type = "f"
message = "Filters system event definitions from list of entities that can be exported in a content pack."

pulls = ["21206"]
issues = ["21166"]
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@ public EventProcessorConfigEntity toContentPackEntity(EntityDescriptorIds entity
return null;
}

@Override
public boolean isContentPackExportable() {
return false;
}

@Override
public void resolveNativeEntity(EntityDescriptor entityDescriptor, MutableGraph<EntityDescriptor> mutableGraph) {
}
Expand Down

0 comments on commit 8aafad6

Please sign in to comment.