diff --git a/.gitignore b/.gitignore
index a6241a2..a9ca9cd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,29 +1,30 @@
-bin/
-[Bb]uild/
-eclipse/
-run/
-out/
+# gradle
+
 .gradle/
-.idea/$CACHE_FILE$
-.idea/codeStyles/
-.idea/compiler.xml
-.idea/dictionaries
-.idea/inspectionProfiles/
-.idea/jarRepositories.xml
-.idea/libraries/
-.idea/misc.xml
-.idea/modules/
-.idea/modules.xml
-.idea/runConfigurations/
-.idea/shelf/
-.idea/uiDesigner.xml
-.idea/workspace.xml
-.settings/
-.updateclasses/
-.classpath
-.project
-.DS_Store
+build/
+out/
+classes/
+
+# eclipse
+
 *.launch
+
+# idea
+
+.idea/
+*.iml
 *.ipr
 *.iws
-Thumbs.db
+
+# vscode
+
+.settings/
+.vscode/
+bin/
+.classpath
+.project
+
+# fabric
+
+run/
+logs/
diff --git a/Forge/src/main/resources/META-INF/mods.toml b/Forge/src/main/resources/META-INF/mods.toml
index b2e9a77..e87752d 100644
--- a/Forge/src/main/resources/META-INF/mods.toml
+++ b/Forge/src/main/resources/META-INF/mods.toml
@@ -1,16 +1,16 @@
 modLoader = "javafml"
 loaderVersion = "[0,)"
 
-authors = "${author}"
 license = "${license}"
 issueTrackerURL = "${issuesURL}"
 
 [[mods]]
 modId = "${id}"
-version = "${version}"
 displayName = "${name}"
-description = "${description}"
 displayURL = "${sourcesURL}"
+description = "${description}"
+authors = "${author}"
+version = "${version}"
 
 [[dependencies.${id}]]
 modId = "minecraft"