diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index 2d7d2ce1a0..0000000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,21 +0,0 @@ -**I am currently running** - -- SpongeForge version: -- Forge version: -- Java version: -- Operating System: - - -- Plugins/Mods: - - -**Issue Description** - - - diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000000..b54a9bf750 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,17 @@ +blank_issues_enabled: false +contact_links: + - name: I am using SpongeForge for Minecraft 1.16.5 or later + url: https://github.com/SpongePowered/Sponge/issues/new + about: "Issues for SpongeForge for Minecraft 1.16.5 or later should be reported on the Sponge repository." + - name: Known Mod Incompatibilities + url: https://docs.spongepowered.org/stable/en/server/spongineer/incompatible.html + about: "If you're potentially having issues with mod conflicts, read this page. You may simply need to change a mod or sponge setting." + - name: Sponge Docs + url: https://docs.spongepowered.org/ + about: "If you need help setting up a server, our Docs pages may help you." + - name: Sponge Forums + url: https://forums.spongepowered.org/ + about: "If you need support running your server and want to ask a question, post on our official forums" + - name: Sponge Discord Guild + url: https://discord.gg/sponge + about: "For quick help, join our Discord channel!" \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/legacy_issue.yml b/.github/ISSUE_TEMPLATE/legacy_issue.yml new file mode 100644 index 0000000000..97c1242b82 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/legacy_issue.yml @@ -0,0 +1,59 @@ +name: I am using SpongeForge for Minecraft 1.12.2 +description: File an issue. Please note that Github Issues is not for general support. +body: + - type: markdown + attributes: + value: "## Before You Begin" + - type: markdown + attributes: + value: | + Github Issues are for filing bug reports and requesting new features only. If you need general support, please check out the following places first: + + * [Check to see if a mod you're running is incompatible here.](https://docs.spongepowered.org/stable/en/server/spongineer/incompatible.html) + * [Read more about how to set up a server on SpongeDocs.](https://docs.spongepowered.org/stable/en/server/index.html) + * [Need server support? Post on our official forums instead.](https://forums.spongepowered.org/) + * [Got a quick question? Ask us on our official Discord guild](https://discord.gg/sponge) + + If you are sure you have found a bug with SpongeForge for Miencraft 1.12.2, file an issue below! + - type: input + id: version + attributes: + label: Version + description: What version of SpongeForge are you running? + placeholder: ex. 7.4.7 + validations: + required: true + - type: input + id: os + attributes: + label: Operating System + description: e.g. Windows, macOS, Linux + validations: + required: true + - type: input + id: java + attributes: + label: Java Version + description: "You can get this by running `java -version` from the command line" + validations: + required: true + - type: textarea + id: plugins + attributes: + label: Plugins/Mods + description: List all plugins and mods that you are using + render: shell + validations: + required: true + - type: textarea + id: what-happened + attributes: + label: Describe the bug + description: Explain what the bug is and how to reproduce it + validations: + required: true + - type: input + id: logs + attributes: + label: Link to logs + description: "Please paste relevant logs to [Github Gist](https://gist.github.com) or [paste.gg](https://paste.gg), and paste a link to it here." diff --git a/src/main/java/org/spongepowered/mod/SpongeMod.java b/src/main/java/org/spongepowered/mod/SpongeMod.java index b1df4afcb6..cd585da2fa 100644 --- a/src/main/java/org/spongepowered/mod/SpongeMod.java +++ b/src/main/java/org/spongepowered/mod/SpongeMod.java @@ -409,14 +409,6 @@ public Certificate getSigningCertificate() { @Subscribe public void onPreInit(FMLPreInitializationEvent event) { try { - // With later versions of forge for 1.12+ (2856+), slf4j may not - // have picked up on log4j 2.15. We try to do a manual override here. - if (LoggerFactory.getILoggerFactory().getClass() == SubstituteLoggerFactory.class) { - - } - - org.apache.logging.log4j.LogManager.getLogger().info("Log test"); - SpongeImpl.getGame().getEventManager().registerListeners(SpongeImpl.getPlugin().getInstance().get(), SpongeInternalListeners.getInstance()); this.registerService(ChunkTicketManager.class, new SpongeChunkTicketManager()); SpongeBootstrap.initializeServices();