the 1.18 pr, but moved to api with an example usage for tinkers #61
No reviewers
Labels
No labels
Area-Assets
Area-Backend
Area-Conduits
Area-Datapacks
Area-Lang
Area-Mod Compat
Area-Parity
Area-Rendering
Good first issue
MC-1.19.2
MC-1.20.1
MC-1.20.4
MC-1.20.6
MC-1.21
MC-1.21.1
Modtoberfest
P-0-High
P-1-Medium
P-2-Low
Status-Awaiting Response
Status-Behind-Flag
Status-Blocked
Status-Cannot Reproduce
Status-Duplicate
Status-Help Wanted
Status-Incomplete Report
Status-Invalid
Status-Needs LTS Backport
Status-Needs Updating
Status-Stale
Status-To Implement
Status-Triage
Status-Wontfix
Status-Wontmerge
Type-Backport
Type-Bug
Type-Documentation
Type-Enhancement
Type-Question
Type-RFC
Type-Suggestion
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: Team-EnderIO/EnderIO#61
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "feature/powerful_integration1.19.x"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Description
Integration was moved to api, so other mods can easily alter our behavior, if they wish.
I would also like some feedback if Integration should be part of api, as this could be something really easy to implement for others to change our behavior
Checklist:
Looks good, just want to understand why the setModid method works the way it does.
@ -0,0 +1,28 @@package com.enderio.api.integration;Not to be a pedant, but there should be a space between IntegrationMethods and the {
@ -0,0 +19,4 @@*/public void setModid(String modid) {if (this.modid != null)throw new IllegalCallerException("You are not allowed to set the modid of an integration");I'm a little confused why we are handling it like this. Can you walk me through this either here or in discord?
Looks good, thanks!