From 7dfe3a1c598f73d5713c2eb588f0510e462d221c Mon Sep 17 00:00:00 2001 From: Skizzles Date: Sun, 22 Aug 2021 04:29:42 -0700 Subject: [PATCH 1/4] Update bug.yml Fixes support links not linking to discord --- .github/ISSUE_TEMPLATE/bug.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 7a446280a..331ce0fdb 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -60,9 +60,9 @@ body: label: Checklist description: Please ensure you meet each of the requirements below options: - - label: I am using an unmodified version of Iris. (If you modified the plugin and see an issue, make sure it is reproducable on the latest spigot version or contact [support](discord.gg/volmit)) + - label: I am using an unmodified version of Iris. (If you modified the plugin and see an issue, make sure it is reproducable on the latest spigot version or contact [support](https://discord.gg/volmi)) required: true - - label: I am using Spigot, Paper, Tuinity, or Purpur. (If you are not, and still think it is a valid issue, contact [support](discord.gg/volmit)) + - label: I am using Spigot, Paper, Tuinity, or Purpur. (If you are not, and still think it is a valid issue, contact [support](https://discord.gg/volmit)) required: true - type: markdown id: thanks From 47b4a6c498499d9263bf1153963ba6c8aece8bf9 Mon Sep 17 00:00:00 2001 From: Skizzles Date: Sun, 22 Aug 2021 04:30:21 -0700 Subject: [PATCH 2/4] Update bug.yml fix my stupid spelling --- .github/ISSUE_TEMPLATE/bug.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 331ce0fdb..8691354d4 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -60,7 +60,7 @@ body: label: Checklist description: Please ensure you meet each of the requirements below options: - - label: I am using an unmodified version of Iris. (If you modified the plugin and see an issue, make sure it is reproducable on the latest spigot version or contact [support](https://discord.gg/volmi)) + - label: I am using an unmodified version of Iris. (If you modified the plugin and see an issue, make sure it is reproducable on the latest spigot version or contact [support](https://discord.gg/volmit)) required: true - label: I am using Spigot, Paper, Tuinity, or Purpur. (If you are not, and still think it is a valid issue, contact [support](https://discord.gg/volmit)) required: true From ac0d0a6680369a1fee0daa3f187afd61e4b1a57d Mon Sep 17 00:00:00 2001 From: ArMiN231 Date: Wed, 1 Sep 2021 14:17:14 +0200 Subject: [PATCH 3/4] Getting rid of the double n when hotloading --- src/main/java/com/volmit/iris/Iris.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/volmit/iris/Iris.java b/src/main/java/com/volmit/iris/Iris.java index aa9b4c0ad..3c22fc181 100644 --- a/src/main/java/com/volmit/iris/Iris.java +++ b/src/main/java/com/volmit/iris/Iris.java @@ -320,7 +320,7 @@ public class Iris extends VolmitPlugin implements Listener { IrisSettings.invalidate(); IrisSettings.get(); configWatcher.checkModified(); - Iris.info("Hotloaded settings.json"); + Iris.info("Hotloaded settings.json + " "); //The extra space stops a bug from repeating the last letter } } From 7b002606bf5781d1b4166a2ff847e65b9003a095 Mon Sep 17 00:00:00 2001 From: ArMiN231 Date: Wed, 1 Sep 2021 14:24:44 +0200 Subject: [PATCH 4/4] Update Iris.java --- src/main/java/com/volmit/iris/Iris.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/volmit/iris/Iris.java b/src/main/java/com/volmit/iris/Iris.java index 3c22fc181..88d0d5ce4 100644 --- a/src/main/java/com/volmit/iris/Iris.java +++ b/src/main/java/com/volmit/iris/Iris.java @@ -320,7 +320,7 @@ public class Iris extends VolmitPlugin implements Listener { IrisSettings.invalidate(); IrisSettings.get(); configWatcher.checkModified(); - Iris.info("Hotloaded settings.json + " "); //The extra space stops a bug from repeating the last letter + Iris.info("Hotloaded settings.json "); } }