Fix fabric.mod.json, add run folder to gitignore

Signed-off-by: Quentin Legot <legotquentin@gmail.com>
This commit is contained in:
Quentin Legot 2023-02-13 15:25:08 +01:00
parent f5db55e96e
commit 0f902faa1b
3 changed files with 6 additions and 5 deletions

4
.gitignore vendored
View File

@ -4,6 +4,8 @@ build/
!**/src/main/**/build/
!**/src/test/**/build/
Tasks/run
### IntelliJ IDEA ###
.idea
*.iws
@ -36,4 +38,4 @@ bin/
.vscode/
### Mac OS ###
.DS_Store
.DS_Store

View File

@ -17,7 +17,7 @@ public class Task implements ModInitializer {
@Override
public void onInitialize() {
/*try {
/* try {
asyncWorkers.addTask(new AltarikRunnable() {
@Override
public void run() {
@ -44,7 +44,7 @@ public class Task implements ModInitializer {
}, 60, 80);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}*/
} */
}
public TaskI getAsyncWorkers() {

View File

@ -27,8 +27,7 @@
"depends": {
"fabricloader": ">=0.14.12",
"fabric": "*",
"minecraft": "1.19.3",
"npcs": "2.0.1-SNAPSHOT"
"minecraft": "1.19.3"
}
}