diff --git a/COPYING b/COPYING
index c1c909f..f9389e1 100644
--- a/COPYING
+++ b/COPYING
@@ -10,4 +10,6 @@ Other Licenses:
- environmenttech
- client
- renderer
- - EnvStorageRenderer = Blu's License of Common Sense
+ - EnvStorageRenderer.java = Blu's License of Common Sense
+ - utils
+ - MouseUtils.java = MIT
diff --git a/build.gradle.kts b/build.gradle.kts
index 7c57229..0737f13 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -62,7 +62,8 @@ spotless {
java {
// Originally, this was from Kaupenjoe's repo, and was licensed by BluSunrize as the original code was from her, so we exclude it to not add our License Header
- targetExclude("src/main/java/robaertschi/environmenttech/client/renderer/EnvStorageRenderer.java")
+ targetExclude("src/main/java/robaertschi/environmenttech/client/renderer/EnvStorageRenderer.java",
+ "src/main/java/robaertschi/environmenttech/utils/MouseUtils.java")
importOrder("lombok", "java|javax", "", "net.minecraft", "com.mojang", "robaertschi", "\\#")
removeUnusedImports()
licenseHeaderFile("HEADER.java")
diff --git a/src/main/java/robaertschi/environmenttech/utils/MouseUtils.java b/src/main/java/robaertschi/environmenttech/utils/MouseUtils.java
index 7b9dac4..f3fde79 100644
--- a/src/main/java/robaertschi/environmenttech/utils/MouseUtils.java
+++ b/src/main/java/robaertschi/environmenttech/utils/MouseUtils.java
@@ -1,5 +1,11 @@
package robaertschi.environmenttech.utils;
+/**
+ * This file is from here.
+ * So all credits go to Kaupenjoe. The code is under the following license: here
+ * @author Kaupenjoe
+ */
+
public class MouseUtils {
@SuppressWarnings("unused")
public static boolean isMouseOver(double mouseX, double mouseY, int x, int y) {