NovaCore

NovaCore

570k Downloads

[Request] Add Tag to Tag method to TagProvider

remplerus opened this issue ยท 3 comments

commented

Is there an existing suggestion for this?

  • I have searched the existing suggestions

Feature Description

Adding existing tags to our tags can't be done as there's no method for it.

Provided Benefit

We can use tags to make our mods more configurable.

Additional Context

No response

commented

Should be possible via:

public final BUILDER add(TagKey<TYPE>... tags) {
return apply(builder::addTag, TagKey::location, tags);
}
public BUILDER add(TagEntry tag) {
builder.add(tag);
return self();
}

commented

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

commented

This issue has been automatically closed because it has been stale for 7 days. You may reopen this issue by commenting on it.